1
0
mirror of https://gitee.com/bitdance-team/chrome-extension synced 2025-01-11 14:18:26 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
chrome-extension/packages/shell-chrome/manifest.json

46 lines
918 B
JSON
Raw Normal View History

2022-01-25 20:58:23 +08:00
{
"name": "BitDance浏览器小插件",
"version": "0.1.0",
"description": "BitDance Chrome Extension",
2022-01-28 15:56:58 +08:00
"manifest_version": 2,
"_locale": "zh_CN",
2022-01-28 17:41:12 +08:00
"background": {
"scripts": [
"assets/js/background.js"
]
},
2022-01-28 15:56:58 +08:00
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
2022-01-28 17:41:12 +08:00
"assets/js/content.js"
2022-01-28 15:56:58 +08:00
],
"css": []
}
],
2022-01-25 20:58:23 +08:00
"browser_action": {
2022-01-28 15:56:58 +08:00
"default_icon": "assets/image/icon_disabled.png",
"default_popup": "popup.html",
"default_title": "这是一个默认title"
2022-01-25 20:58:23 +08:00
},
2022-01-28 16:18:43 +08:00
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Alt+Comma",
"mac": "Alt+Comma"
},
"description": "打开 [学生助手] 插件"
}
},
2022-01-28 15:56:58 +08:00
"permissions": [
"background",
"contextMenus",
"storage",
"unlimitedStorage",
"webRequest",
"webRequestBlocking",
"tabs"
]
2022-01-25 20:58:23 +08:00
}