try to take over the world!
// ==UserScript==
// @name 不要翻译代码
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author doublethink
// @match *
// @include *
// @grant none
// ==/UserScript==
(function() {
'use strict'
// Your code here...
const notranslate = (node) => void node.classList.add('notranslate')
;[...document.querySelectorAll('pre')].forEach(notranslate)
})()