1
0
mirror of https://gitee.com/bitdance-team/chrome-extension synced 2025-10-08 16:55:17 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
Files
chrome-extension/packages/shell-chrome/manifest.json
2022-02-06 14:18:26 +08:00

32 lines
715 B
JSON

{
"manifest_version":2,
"name":"hello js",
"version":"1.0",
"description":"hello js 插件",
"icons":{
"128":"img/1.png",
"48":"img/1.png",
"16":"img/1.png"
},
"browser_action":{
"default_icon":"img/1.png",
"default_popup":"popup.html"
},
"background":{
"scripts":[
"./js/popup.js",
"./js/MD5.js"
],
"persistent":false
},
"content_security_policy": "style-src 'self' 'unsafe-inline';script-src 'self' 'unsafe-eval' https://cdn.bootcss.com; object-src 'self' ;"
,"content_scripts":
[
{
"matches": ["<all_urls>"],
"js": ["./js/MD5.js","./js/popup.js"]
}
]
}