5
每次点击Chrome扩展程序图标时运行脚本
如何编写一个Chrome扩展程序,以便每次用户单击该图标时,我的脚本都运行,但没有打开弹出窗口?(我会自己在文档中查找此内容,但是由于任何原因,他们突然停止工作,直到现在为止我都对每个页面进行404处理)。 我假设它只是正确设置了清单。这是我现在拥有的: { "name": "My Extension", "version": "0.1", "description": "Does some simple stuff", "browser_action": { "popup" : "mine.html", "default_icon": "logo.png" }, "permissions": [ "notifications" ] }