bing improvent

try to improve the Bing search experiense

目前为 2023-02-23 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name bing improvent
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description try to improve the Bing search experiense
  6. // @author charles
  7. // @match https://www.bing.com/search?*
  8. // @icon https://th.bing.com/th/id/OIP.HXLPdESYC5xlVIDJxAx1ngHaHa?pid=ImgDet&rs=1
  9. // @grant GM_addStyle
  10. // ==/UserScript==
  11.  
  12. (function () {
  13. "use strict";
  14. // Set the color of unvisited links to blue, similar to Google search results
  15. GM_addStyle("ol a:link{color:rgb(125, 187, 247) !important}");
  16. })();