Last active
January 27, 2024 02:34
-
-
Save rishubil/712f9ec8f30f3a1e43cf84eabaada40e to your computer and use it in GitHub Desktop.
This file contains 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 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