IITCのUI消すヤツ

IITCのUI消すよ

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

// ==UserScript==
// @name         IITCのUI消すヤツ
// @namespace    
// @version      0.0.1
// @description  IITCのUI消すよ
// @author       kik0220 fork from IGUCHI
// @match        https://www.ingress.com/intel*
// @grant        GM_addStyle
// ==/UserScript==

document.body.addEventListener("DOMNodeInserted", function(e){
  try{
    GM_addStyle('#updatestatus, #scrollwrapper, #sidebartoggle, #privacycontrols, .leaflet-control {display:none;}');
  } catch(e) { return; }
}, false);