Reddit The Button Show Cheaters

Reddit The Button Show Cheaters by editing the flair - pink with purple text

当前为 2015-08-07 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Reddit The Button Show Cheaters
  3. // @namespace english
  4. // @description Reddit The Button Show Cheaters by editing the flair - pink with purple text
  5. // @include http*://*reddit.com/r/thebutton*
  6. // @version 1.9
  7. // @run-at document-start
  8. // @grant GM_addStyle
  9. // ==/UserScript==
  10.  
  11. // Main - Reddit The Button Show Cheaters
  12.  
  13.  
  14. var style = document.createElement('style');
  15. style.type = 'text/css';
  16. style.innerHTML = '.flair-cheater { color: #7718AE; background: #E5BBF4;}';
  17. document.getElementsByTagName('head')[0].appendChild(style);
  18.