Skip to content

Instantly share code, notes, and snippets.

@rishubil
Last active January 27, 2024 02:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rishubil/712f9ec8f30f3a1e43cf84eabaada40e to your computer and use it in GitHub Desktop.
Save rishubil/712f9ec8f30f3a1e43cf84eabaada40e to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Redirect to nitter
// @version 0.0.2
// @description Redirect to nitter
// @match https://twitter.com/*
// @match https://x.com/*
// @updateURL https://gist.github.com/rishubil/712f9ec8f30f3a1e43cf84eabaada40e/raw/redirect-to-nitter.user.js
// @downloadURL https://gist.github.com/rishubil/712f9ec8f30f3a1e43cf84eabaada40e/raw/redirect-to-nitter.user.js
// @run-at document-start
// ==/UserScript==
(function() {
location.href = `https://farside.link/nitter${location.pathname}`
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment