您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
show original search result translated in google
// ==UserScript== // @name Google show original search result translated // @namespace https://greasyfork.org/users/821661 // @version 1.0 // @description show original search result translated in google // @author hdyzen // @match https://www.google.*/search* // @icon https://www.google.com/s2/favicons?domain=https://www.google.com/&sz=64 // @grant GM_addStyle // @run-at document-start // @license GPL-3.0-only // ==/UserScript== if (typeof GM_addStyle === "undefined") { window.GM_addStyle = (css) => { const node = document.head || document.documentElement; node.insertAdjacentHTML("beforeend", `<style>${css}</style>`); }; } GM_addStyle(` a[data-tli][href] { &[lang] { display: inline !important; } &:not([lang]) { display: none !important; } } div[lang] div[lang]:has([d^="M12.87 15."]) { display: none !important; } `);