{ "name": "投放出价监控插件", "description": "投放出价监控插件", "version": "1.0", "manifest_version": 2, "icons": { "16": "images/icon.png", "48": "images/icon.png", "128": "images/icon.png" }, "background": { "scripts": ["common/helper.js", "background/utils.js", "background/index.js"] }, "page_action": { "default_icon": "images/icon.png", "default_title": "投放出价监控插件" }, "content_scripts": [ { "matches": ["*://mp.weixin.qq.com/*", "*://e.qq.com/*"], "js": ["content/content-before.js"], "run_at": "document_start" }, { "matches": ["*://mp.weixin.qq.com/*", "*://e.qq.com/*"], "js": ["content/utils.js", "content/index.js"], "run_at": "document_end" } ], "permissions": [ "tabs", "activeTab", "storage", "http://*/", "https://*/", "webRequest", "webRequestBlocking" ] }