您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Highlight all external links in lime green, works on dynamically added content too.
// ==UserScript== // @name Limegreen external links // @description Highlight all external links in lime green, works on dynamically added content too. // @include * // @namespace wOxxOm.scripts // @author wOxxOm // @version 1.0.2 // @license MIT License // @grant GM_addStyle // @run-at document-start // @require https://gf.qytechs.cn/scripts/12228/code/setMutationHandler.js // ==/UserScript== GM_addStyle( 'a.external_link_wOxxOm:link {background-color: rgba(133,255,0,0.7) !important; color:black!important}'+ 'a.external_link_wOxxOm:visited {background-color: rgba(191,255,0,0.7) !important; color:black!important}' ); setMutationHandler(document, 'a[href*="//"]', function(nodes) { var hostname = new URL(location.href).hostname; nodes.forEach(function(n) { if (new URL(n.href).hostname != hostname) n.classList.add('external_link_wOxxOm'); }); return true; });
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址