Create bookmarklets to improve your web surfing
Introduction
A bookmarklet is a bookmark in a web browser that contains JavaScript commands that add new features to the browser.
This is a collection of useful bookmarklets that I use.
Remove query string
I’ve encountered issues where publishers will include SEO tags that conflict with the forms on the page. This script will remove everything after the question mark from the url of the page you are currently on.
Icon: ⌫
javascript:(function() { window.location=window.location.toString().split("?")[0]; })()
Remove paywall
This script searches archive.is for copies of the page you’re currently on.
Icon: 🕵
javascript:(function() { window.location='https://archive.is/' + window.location.toString(); })()
Comments
Join the discussion for this article on this ticket. Comments appear on this page instantly.