AFK-color *OLD*

Changes color of AFK-users

当前为 2016-04-22 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name AFK-color *OLD*
  3. // @include http://www.kongregate.com/games/*
  4. // @description Changes color of AFK-users
  5. // @license Public Domain
  6. // @version 0.0.1.20160422202924
  7. // @namespace https://greasyfork.org/users/32649
  8. // ==/UserScript==
  9.  
  10. x=document.styleSheets[1];
  11. if(x){
  12. x.insertRule('#kong_game_ui .user_row.away .username { color:#838B8B;font-style: italic;}',x.cssRules.length);
  13. }