Currently, there is no way to, say, configure a search for https://web.archive.org/ because it expects the page URL to be in non-urlencoded form.
If one uses https://web.archive.org/web/*/%PAGE_URL for 'Search url' in your extension - the resulting page for, say, https://github.com/ will be
https://web.archive.org/web/20260000000000*/https%3A%2F%2Fgithub.com%2F
instead of expected
https://web.archive.org/web/20260000000000*/https://github.com/
I suggest to fix this problem by introducing a new variable like %PAGE_URL_RAW that would avoid urlencode conversion of the current page's URL, contrary to how %PAGE_URL does that.
Currently, there is no way to, say, configure a search for https://web.archive.org/ because it expects the page URL to be in non-urlencoded form.
If one uses
https://web.archive.org/web/*/%PAGE_URLfor 'Search url' in your extension - the resulting page for, say, https://github.com/ will behttps://web.archive.org/web/20260000000000*/https%3A%2F%2Fgithub.com%2F
instead of expected
https://web.archive.org/web/20260000000000*/https://github.com/
I suggest to fix this problem by introducing a new variable like
%PAGE_URL_RAWthat would avoid urlencode conversion of the current page's URL, contrary to how%PAGE_URLdoes that.