Don't translate Android Developers

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

  1. // ==UserScript==
  2. // @name Don't translate Android Developers
  3. // @name:it Non tradurre Android Developers
  4. // @namespace StephenP
  5. // @match https://developer.android.com/*?hl=*
  6. // @grant none
  7. // @version 1.0
  8. // @author StephenP
  9. // @license copyleft
  10. // @run-at document-start
  11. // @description Loads the original page instead of the autotranslated version that the search engines link to.
  12. // @description:it Carica la pagina 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]);