Reddit The Button Show Cheaters

Reddit The Button Show Cheaters -- Donate: - Fund-raising for my IT creations - https://pledgie.com/campaigns/28629 Donate through pledgie.com or PayPal -- https://flattr.com/profile/pushka - Donate through flattr.com

当前为 2015-04-24 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Reddit The Button Show Cheaters
  3. // @namespace english
  4. // @description Reddit The Button Show Cheaters -- Donate: - Fund-raising for my IT creations - https://pledgie.com/campaigns/28629 Donate through pledgie.com or PayPal -- https://flattr.com/profile/pushka - Donate through flattr.com
  5. // @include http*://*reddit.com/r/thebutton*
  6. // @version 1.1
  7. // @run-at document-end
  8. // @grant GM_addStyle
  9. // ==/UserScript==
  10. // Main - Reddit The Button Show Cheaters
  11. $(document).ready(function(){
  12. var style = document.createElement('style');
  13. style.type = 'text/css';
  14. style.innerHTML = '.flair-cheater { color: #7718AE; background: #E5BBF4;}';
  15. document.getElementsByTagName('head')[0].appendChild(style);
  16. });