Skip to content

Support of dynamic URL - Chrome extension #12

Description

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

var parameters = 'url=' + url;

To

var parameters = 'url=' + encodeURIComponent(url);

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions