您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
try to improve the Bing search experiense
- // ==UserScript==
- // @name bing improvent
- // @namespace http://tampermonkey.net/
- // @version 1.0
- // @description try to improve the Bing search experiense
- // @author charles
- // @match https://www.bing.com/search?*
- // @icon https://th.bing.com/th/id/OIP.HXLPdESYC5xlVIDJxAx1ngHaHa?pid=ImgDet&rs=1
- // @grant GM_addStyle
- // ==/UserScript==
- (function () {
- "use strict";
- // Set the color of unvisited links to blue, similar to Google search results
- GM_addStyle("ol a:link{color:rgb(125, 187, 247) !important}");
- })();