网页翻译过滤代码

try to take over the world!

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

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址