NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name NoFollow links detector // @version 0.1 // @description Script is adding a red dotted border to all found nofollow links on currently visited website. // @match *://*/* // @copyright Aaron Knudsen // @license MIT // ==/UserScript== (function() { var links = document.getElementsByTagName("a"); for (i = 0; i < links.length; i++) { var link = links[i]; var rel = link.rel; if(rel.indexOf("nofollow") !== -1) { link.style["border"] = "dotted red"; link.style["border-width"] = "1px 1px 2px 1px"; } } })();