{
"manifest_version": 2,
"name": "商家助手",
"version": "1.0",
"description": "商家助手 ",
"homepage_url": "https://www.zhaocrx.com",
"author": "找插件网",
"icons": {
"48": "icon.png",
"128": "icon.png"
},
// 会一直常驻的后台JS或后台页面
"background": {
// 2种指定方式,如果指定JS,那么会自动生成一个背景页
"page": "background.html"
//"scripts": ["js/background.js"]
},
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [ "*://*/*" ],
"js": [ "js/jquery-1.8.3.js", "js/content-script.js", "js/layer.js", "js/JsonExportExcel.min.js" ],
"css": [ "css/home.css", "css/layer.css" ],
"all_frames": true,
"run_at": "document_end"
}
],
"permissions": [
"contextMenus", // 右键菜单
"proxy",
"tabs", // 标签
"notifications", // 通知
"webRequest", // web请求
"webRequestBlocking", // 阻塞式web请求
"storage" // 插件本地存储
],
"web_accessible_resources": [
"inject.js",
"js/19_Morning_breeze.ogg"
]
}
转载请注明原文地址:https://blackberry.8miu.com/read-3436.html