Skip to content

Instantly share code, notes, and snippets.

@Veticia
Last active October 1, 2023 18:19
Show Gist options
  • Save Veticia/6889bc045c90276613192e2dfde9fa4f to your computer and use it in GitHub Desktop.
Save Veticia/6889bc045c90276613192e2dfde9fa4f to your computer and use it in GitHub Desktop.
Always redirect Twitter to Nitter
// ==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