Greasy Fork镜像 支持简体中文。

KrustyHack Hightlight Nofollow

simply highlight nofollow links on a page

  1. // ==UserScript==
  2. // @name KrustyHack Hightlight Nofollow
  3. // @namespace http://www.nicolashug.com
  4. // @version 0.1
  5. // @description simply highlight nofollow links on a page
  6. // @match *://*/*
  7. // @copyright 2014+, KrustyHack
  8. // ==/UserScript==
  9.  
  10. (function() {
  11. var links = document.getElementsByTagName("a");
  12. for (i = 0; i < links.length; i++) {
  13. var link = links[i];
  14. var rel = link.rel;
  15. if(rel.indexOf("nofollow") !== -1) {
  16. link.style["background-color"] = "red";
  17. link.style["color"] = "white";
  18. }
  19. }
  20. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址