How do I copy hyperlinks in non-encoded format in Firefox?
In about:config
set
network.standard-url.escape-utf8: false
After this path copied as not encoded. But ancor keep encoded. :(
UPD:
Found updated config Value
The setting was replaced with browser.urlbar.decodeURLsOnCopy in Firefox 53+.
https://superuser.com/a/1255451/17118
A work around is to not copy the entire URL from the bar (this works in firefox). And then it wont encode it.
I found that in firefox, if I placed my cursor in the address bar and press 'CTRL A', 'CTRL C', and then Paste it into whatever (an email, notepad++ etc). Then the url would change from what was originally in the URL.
EG.
http://example/test.php?p=(999)+999+999
Would become:
http://example/test.php?p=%28999%29+999+999
But if I copied from the 'x' in example:
xample/test.php?p=(999)+999+999
The URL was not changed on paste and it was easy to fix the front of the URL.
Hope this clears it up.
Edit
It appears as of Firefox 60 it is no longer possible via the methods in this post, but I'll leave the post for historical reasons...
Open the config page in Firefox by typing in about:config
, then promise to be careful and enter.
Type network.standard-url
into the search box.
Ensure both values are set to true.
Source
Edit
As per mmv-ru comments, setting escape-utf-8 to false helped. So I assume keeping encode set to true!