IITCのUI消すヤツ

IITCのUI消すよ

目前为 2015-07-09 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name IITCのUI消すヤツ
  3. // @namespace
  4. // @version 0.0.1
  5. // @description IITCのUI消すよ
  6. // @author kik0220 fork from IGUCHI
  7. // @match https://www.ingress.com/intel*
  8. // @grant GM_addStyle
  9. // ==/UserScript==
  10.  
  11. document.body.addEventListener("DOMNodeInserted", function(e){
  12. try{
  13. GM_addStyle('#updatestatus, #scrollwrapper, #sidebartoggle, #privacycontrols, .leaflet-control {display:none;}');
  14. } catch(e) { return; }
  15. }, false);