-
Notifications
You must be signed in to change notification settings - Fork 113
/
Copy pathmanifest.json
44 lines (44 loc) · 1.2 KB
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "BlueSea",
"description": "BlueSea,是一个开源、免费、有趣的英语学习扩展程序。支持划词翻译、单词高亮、单词弹幕、记忆曲线复习、词频统计...等功能",
"version": "0.0.1",
"manifest_version": 2,
"homepage_url": "https://github.com/jiangqizheng/BlueSea",
"permissions": [
"storage",
"unlimitedStorage",
"tabs"
],
"background": {
"scripts": [
"lib/dayjs.js",
"lib/hot-reload.js",
"logic.js",
"background/background.js"
]
},
"browser_action": {
"default_popup": "popup/popup.html",
"default_icon": "icon.png"
},
"content_scripts": [
{
"all_frames": false,
"js": [
"lib/dayjs.js",
"lib/standalone.module.mini.js",
"lib/webcomponents-sd-ce.js",
"logic.js",
"content_scripts/tip.jsx",
"content_scripts/highlighter.js",
"content_scripts/selection.js",
"content_scripts/no-translate.js",
"content_scripts/bullet-screens.jsx"
],
"css": ["content_scripts/selection.css"],
"matches": ["<all_urls>"],
"run_at": "document_start"
}
],
"web_accessible_resources": ["*.html", "*.js", "*.css"]
}