Skip to content

Instantly share code, notes, and snippets.

@Veticia
Last active October 1, 2023 18:19
Show Gist options
  • Select an option

  • Save Veticia/6889bc045c90276613192e2dfde9fa4f to your computer and use it in GitHub Desktop.

Select an option

Save Veticia/6889bc045c90276613192e2dfde9fa4f to your computer and use it in GitHub Desktop.
Always redirect Twitter to Nitter
// ==UserScript==
// @name Redirect Twitter to Nitter
// @namespace turbo.cafe@clovermail.net
// @description Always redirects to Nitter
// @include https://twitter.com/*
// @include https://mobile.twitter.com/*
// @include https://x.com/*
// @run-at document-start
// @author turbo.cafe@clovermail.net
// @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