// ==UserScript== // @name Twitter to Nitter Redirector // @namespace https://codeberg.org/shmup/junk-trove // @version 1.0 // @description Redirect youtube to invidious, a free and open source alternative // @author shmup // @match https://www.twitter.com/* // @match https://twitter.com/* // @grant none // @run-at document-start // @license Unlicense // @downloadURL none // ==/UserScript== /** * Privacy focused. Ethically designed. No Accounts. Multilingual. No Ads. * * https://github.com/iv-org/invidious **/ (function () { top.location.hostname = "nitter.net"; })();