CH MTG Report Warning

Make it obvious if you click on 'Report' instead of 'Reputation' for a post on the MTurkGrind forum (Xenforo).

  1. // ==UserScript==
  2. // @name CH MTG Report Warning
  3. // @author clickhappier
  4. // @namespace clickhappier
  5. // @description Make it obvious if you click on 'Report' instead of 'Reputation' for a post on the MTurkGrind forum (Xenforo).
  6. // @version 1.0c
  7. // @match http://www.mturkgrind.com/*
  8. // @match http://mturkgrind.com/*
  9. // @grant GM_log
  10. // ==/UserScript==
  11.  
  12.  
  13. function addGlobalStyle(css) {
  14. var head, style;
  15. head = document.getElementsByTagName('head')[0];
  16. if (!head) { return; }
  17. style = document.createElement('style');
  18. style.type = 'text/css';
  19. style.innerHTML = css;
  20. head.appendChild(style);
  21. }
  22.  
  23. addGlobalStyle('form[action*="report"] { background-color: #FA840E ! important; }'); // orange background for report form dialog
  24. addGlobalStyle('a.report { color: #FA840E ! important; }'); // orange text for report links
  25. addGlobalStyle('a.report:before, a.report:after { content: "!!" }'); // add exclamation points to report links

QingJ © 2025

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