12345678910111213141516171819202122 |
- /**
- * FE-Helper ContentScripts
- * @author [email protected]
- */
- var FeHelperContentScript = (function(){
- /**
- * 初始化
- */
- var _init = function(){
- window.onload = function(){
- document.getElementById('btnInstallExtension').style.display = 'none';
- };
- };
-
- return {
- init : _init
- };
- })();
- //初始化
- FeHelperContentScript.init();
|