fe-contentscript-fehelper.js 397 B

12345678910111213141516171819202122
  1. /**
  2. * FE-Helper ContentScripts
  3. * @author [email protected]
  4. */
  5. var FeHelperContentScript = (function(){
  6. /**
  7. * 初始化
  8. */
  9. var _init = function(){
  10. window.onload = function(){
  11. document.getElementById('btnInstallExtension').style.display = 'none';
  12. };
  13. };
  14. return {
  15. init : _init
  16. };
  17. })();
  18. //初始化
  19. FeHelperContentScript.init();