// ==UserScript== // @name 替换让谷歌翻译更准确 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 谷歌不会翻译标签 // @author chenjiamian // @match http://*/* // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; Array.from(document.getElementsByTagName('code')).forEach(code=>{ const isLongCode = code.offsetWidth > document.documentElement.offsetWidth/3 if(!isLongCode){ const span = document.createElement('span') span.textContent = code.textContent span.style.cssText = "background-color: #f1f1f1;"; code.parentNode.insertBefore(span,code) code.parentElement.removeChild(code) } }) // Your code here... })();