We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
The actual version cuts parameters since the second. URL like the following: http://192.168.144.40:8080/pages/details/events.html?tid=53&search=&prevSearch=&startDate=08.01.2011&prevStartDate=13.01.2014&filter=&query=&content=%5B%5D&mandate=%5B%5D&page=1&rid=&code=&numero=&id_event=205
Gets cut to: http://192.168.144.40:8080/pages/details/events.html?tid=53
To support all sort of URL we could change, line 56 of background.js, like this: https://github.com/viljamis/Remote-Preview/blob/master/Chrome%20extension/source/background.js
line 56
background.js
var parameters = 'url=' + url;
To
var parameters = 'url=' + encodeURIComponent(url);
The actual version cuts parameters since the second. URL like the following:
http://192.168.144.40:8080/pages/details/events.html?tid=53&search=&prevSearch=&startDate=08.01.2011&prevStartDate=13.01.2014&filter=&query=&content=%5B%5D&mandate=%5B%5D&page=1&rid=&code=&numero=&id_event=205
Gets cut to:
http://192.168.144.40:8080/pages/details/events.html?tid=53
To support all sort of URL we could change,
line 56ofbackground.js, like this:https://github.com/viljamis/Remote-Preview/blob/master/Chrome%20extension/source/background.js
To