Greasy Fork is available in English.

do not translate code

hahaha!

// ==UserScript==
// @name         do not translate code
// @namespace    极客青年
// @version      0.1
// @description  hahaha!
// @author       Geek
// @match        *://*/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var pres = document.getElementsByTagName('pre');
    if(pres && pres.length > 0) {
        for(var i = 0; i < pres.length; i++) {
            pres[i].classList.add('notranslate');
        }
    }
})();