Highlight Clicked button

it will highlight a tags you clicked.

  1. // ==UserScript==
  2. // @name Highlight Clicked button
  3. // @namespace http://tampermonkey.net/sftec
  4. // @version 0.3
  5. // @description it will highlight a tags you clicked.
  6. // @author sftec
  7. // @match *://*/*
  8. // ==/UserScript==
  9.  
  10. (function() {
  11. var style = document.createElement("style");
  12. style.type = "text/css";
  13. var text = document.createTextNode("a:visited,a:active,a:hover{color:#800000!important;}");
  14. style.appendChild(text);
  15. var head = document.getElementsByTagName("head")[0];
  16. head.appendChild(style);
  17. })();