Greasy Fork is available in English.

General URL Cleaner

Cleans URL's from various popular sites.

< Feedback on General URL Cleaner

Review: Good - script works

§
Posted: 22.12.2016

Amazon Look Inside breaking

Under Greasemonkey in Firefox, the script appears to break the Look Inside feature for books. The address bar appears to flash an Amazon URL with an anchor that is quickly cleaned and replaced. Disabling the script allows the feature to work. In Chrome, Look Inside works fine with the script running under Tampermonkey.

KnowbodyAuthor
§
Posted: 25.12.2016

Can you give an example of a URL it breaks?

§
Posted: 26.12.2016

Look Inside at https://www.amazon.com/dp/0671631985/ doesn't work for me.

KnowbodyAuthor
§
Posted: 16.1.2017
Edited: 16.1.2017

OK, I finally got time to have a look at this. I just needed to stop it deleting the hash if it starts with "#reader", by replacing the standard deleteHash(); function for Amazon with this: ```onhashchange = function() { if (!loc.hash.startsWith('#reader')) history.replaceState(null,null,loc.href.replace(loc.hash,'')); };```

§
Posted: 16.1.2017

Excellent. Thanks for the good work.

Post reply

Sign in to post a reply.