You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If this is really needed, do this after splitting by ?, & and =. If you want to support url's like this: example.com?url=example2.com%3Futm%3Dsomething you should probably use recursion ;) URLs like this will be cleaned after redirection to example2.com.
The text was updated successfully, but these errors were encountered:
* Performance improvements
* Several encoding bugs fixed#73#75#93
* Re-initialise listener, hopefully fixes#92
* Fix "Show counter" setting (introduced in 3.2.0) doesn't do anything #91
* Workaround for gws_rd@google.* on google.com #76
* Implement hash parameters using #? #83
* Cleanups
* Fix translation string mapped to wrong i18n id
* Move most functions related to the toolbar button to a separate file
Please stop urlDecoding URL at a whole on the beginning of cleaning. This looses information! L460
For example:
foo@example.com
example.com?foo%3Dbar=baz
foo=bar
==baz
example.com?foo=bar=baz
foo
==bar=baz
Another:
example.com?foo=bar&ab%3Dcd=ef
ab=cd
==ef
ab
==cd=ef
is sentRelated #73
If this is really needed, do this after splitting by
?
,&
and=
.If you want to support url's like this:URLs like this will be cleaned after redirection to example2.com.example.com?url=example2.com%3Futm%3Dsomething
you should probably use recursion ;)The text was updated successfully, but these errors were encountered: