Cleans the URL for a title's page on IMDB
// ==UserScript== // @name IMDB URL Cleaner // @namespace IMDB URL Cleaner // @description Cleans the URL for a title's page on IMDB // @version 1.1 // @grant none // @include /^https?://www.imdb.com/title/* // @include /^https?://www.imdb.com/name/* // ==/UserScript== if (window.location.search.length > 0) { window.history.pushState(null, null, window.location.href.replace(window.location.search, "")); }