Last active
January 27, 2024 02:34
-
-
Save rishubil/712f9ec8f30f3a1e43cf84eabaada40e to your computer and use it in GitHub Desktop.
Revisions
-
rishubil revised this gist
Jan 27, 2024 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ // ==UserScript== // @name Redirect to nitter // @version 0.0.2 // @description Redirect to nitter // @match https://twitter.com/* // @match https://x.com/* @@ -10,5 +10,5 @@ // ==/UserScript== (function() { location.href = `https://farside.link/nitter${location.pathname}` })(); -
rishubil revised this gist
Nov 14, 2023 . 1 changed file with 2 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -4,6 +4,8 @@ // @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== -
rishubil created this gist
Nov 14, 2023 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ // ==UserScript== // @name Redirect to nitter // @version 0.0.1 // @description Redirect to nitter // @match https://twitter.com/* // @match https://x.com/* // @run-at document-start // ==/UserScript== (function() { location.href = `https://nitter.net${location.pathname}` })();