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
For the patterns in the Remove From Links field, I think you use '=' as an implied terminator. So
(?:ref|aff)\w*
should match
referrer=
But I tried to provide a more specific pattern for
referrer=
To the end of the Remove From Links defaults, I added
|(?:ref(?:er(?:r?er)?)?)\w*
I added my pattern to the end so I would not change any of the patterns you provide as defaults. I included 'ref' in my pattern so that my pattern could stand on its own and still match 'ref'.
With my pattern at the end, CleanLinks still changed the URL to
CleanLinks changes
https://login.xmarks.com/?referrer=https%3A%2F%2Flastpass.com%2Ffeatures_joinpremiumxmarks2.php%3Flpuser%3Dlastpass%2540mailinator.com&append=1
to
https://lastpass.com/features_joinpremiumxmarks2.php?lpuser=lastpass%40mailinator.com
I would like CleanLinks to change the URL to
https://login.xmarks.com/
Though I would settle for
https://login.xmarks.com/?append=1
For the patterns in the Remove From Links field, I think you use '=' as an implied terminator. So
(?:ref|aff)\w*
should match
referrer=
But I tried to provide a more specific pattern for
referrer=
To the end of the Remove From Links defaults, I added
|(?:ref(?:er(?:r?er)?)?)\w*
I added my pattern to the end so I would not change any of the patterns you provide as defaults. I included 'ref' in my pattern so that my pattern could stand on its own and still match 'ref'.
With my pattern at the end, CleanLinks still changed the URL to
https://lastpass.com/features_joinpremiumxmarks2.php?lpuser=lastpass%40mailinator.com
I removed the other patterns. I inserted my pattern as the only pattern in Remove From Links. CleanLinks still changed the URL to
https://lastpass.com/features_joinpremiumxmarks2.php?lpuser=lastpass%40mailinator.com
I then inserted
referrer
as the only pattern in Remove From Links. No Regular Expression special characters to clutter up the works. CleanLinks still changed the URL to
https://lastpass.com/features_joinpremiumxmarks2.php?lpuser=lastpass%40mailinator.com
What is going on?
The text was updated successfully, but these errors were encountered: