您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Visited links are pink, not visited are blue. And nothing else. SRC: https://github.com/lynrayy/TampermonkeyScripts
// ==UserScript== // @name Google Search fix Pink links // @name:ru Google Search fix Pink links // @namespace http://tampermonkey.net/ // @version 1.1 // @description Visited links are pink, not visited are blue. And nothing else. SRC: https://github.com/lynrayy/TampermonkeyScripts // @description:ru Visited links are pink, not visited are blue. And nothing else. SRC: https://github.com/lynrayy/TampermonkeyScripts // @author Lynrayy, ChatGPT // @include *://www.google.*/* // @grant GM_addStyle // @license MIT // ==/UserScript== (function() { 'use strict'; const urlPattern = /^https?:\/\/www\.google\.[a-z]{2,3}\/.*/; if (urlPattern.test(window.location.href)) { GM_addStyle(` a:visited { color: #681DA8 !important; } a { color: #1A0DAB !important; } `); } })();