Don't translate Reddit

Loads the original post instead of the autotranslated version that the search engines link to.

  1. // ==UserScript==
  2. // @name Don't translate Reddit
  3. // @name:it Non tradurre Reddit
  4. // @namespace StephenP
  5. // @match https://www.reddit.com/*/?tl=*
  6. // @grant none
  7. // @version 1.0
  8. // @author StephenP
  9. // @license copyleft
  10. // @run-at document-start
  11. // @description Loads the original post instead of the autotranslated version that the search engines link to.
  12. // @description:it Carica il post originale invece della versione autotradotta a cui i motori di ricerca rimandano
  13. // ==/UserScript==
  14. window.stop();
  15. window.location.replace(window.location.href.split("?")[0]);