Last active
October 1, 2023 18:19
-
-
Save Veticia/6889bc045c90276613192e2dfde9fa4f to your computer and use it in GitHub Desktop.
Always redirect Twitter to Nitter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Redirect Twitter to Nitter | |
// @namespace [email protected] | |
// @description Always redirects to Nitter | |
// @include https://twitter.com/* | |
// @include https://mobile.twitter.com/* | |
// @include https://x.com/* | |
// @run-at document-start | |
// @author [email protected] | |
// @grant none | |
// ==/UserScript== | |
window.location.replace("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