Skip to content

The objective of this tool is to crawl the database of specially marked addresses on Etherscan.

Notifications You must be signed in to change notification settings

lxiiiixi/Chrome-Extention-Of-Etherscan

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

问题记录

chrome.extension.getBackgroundPage

为了解决插件 V3 中 background script 中无法获取到 window 对象,使用 getBackgroundPage 来获取, 但是执行却报出 background.js:1 Uncaught TypeError: chrome.extension.getBackgroundPage is not a function 的错误 发现是是因为 background(V3 叫做 service worker)加载不出导致的 V2 中有一个 persistent 属性, 如果设置为 true 会始终后台运行, 相当于一个独立的服务器页面, 而如果是 false 则会让 background 变成了一种短暂加载进内存的脚本, 脚本可以多次被线程加载执行, 执行完毕后就释放, 可以降低谷歌浏览器的内存耗费(事实上这么点内存耗费并不是那么重要所以大多数情况下无脑设置 persistent:true) 在 V3 中,chrome extensions 砍掉了 background, 直接改为了 persistent 始终为 false 的 service worker,也就是说, 新的 background 会不断的卸载重装卸载重装

当前存在的可优化点

  1. 在最终下载之前对还未打开的 url 的判断效率或许可以提高,会耗费一点时间
  2. 网站有时就是会有不确定的原因导致增加获取时间多次也还是打不开,陷入死循环导致一直无法下载

About

The objective of this tool is to crawl the database of specially marked addresses on Etherscan.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages