Twitter to Nitter

Always redirects to nitter

  1. // ==UserScript==
  2. // @name Twitter to Nitter
  3. // @namespace https://greasyfork.org/en/users/29389-fons-visionem-suum
  4. // @description Always redirects to nitter
  5. // @match *://twitter.com/*
  6. // @version 0.2
  7. // @run-at document-start
  8. // @author Fons visionem suum
  9. // @grant none
  10. // @license Mozilla
  11.  
  12. // ==/UserScript==
  13.  
  14. window.location.replace("https://nitter.net" + window.location.pathname + window.location.search);