Created
June 27, 2019 11:47
-
-
Save afiram/b4f65d8bbbfb6b4e4bf8ac6ffa1492e3 to your computer and use it in GitHub Desktop.
code notranslate css in google translater
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 characters
| // ==UserScript== | |
| // @name code-notranslate.user.js | |
| // @description code notranslate css in google translater | |
| // @match *://*/* | |
| // ==/UserScript== | |
| ["pre", "code",".highlight"].map(x=>[].map.call(document.querySelectorAll(x),e => | |
| e.classList.add("notranslate"))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment