// ==UserScript== // @name 网页翻译过滤代码 // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author liuyang // @grant none // @include *:// // @downloadURL 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'); } } })();