Skip to content

Instantly share code, notes, and snippets.

@Tymek
Created March 12, 2022 18:02
Show Gist options
  • Save Tymek/24ad8f7123bea1efcdd79bf5e807236a to your computer and use it in GitHub Desktop.
Save Tymek/24ad8f7123bea1efcdd79bf5e807236a to your computer and use it in GitHub Desktop.
Twitter to Nitter proxy – tampermonkey redirect
// ==UserScript==
// @name Twitter to Nitter
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author Tymek
// @match https://twitter.com/*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// ==/UserScript==
(function() {
'use strict';
location.href = `https://nitter.net${window.location.pathname}${window.location.search}`;
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment