-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmanifest-firefox.json
More file actions
66 lines (66 loc) · 1.16 KB
/
manifest-firefox.json
File metadata and controls
66 lines (66 loc) · 1.16 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"manifest_version": 3,
"name": "人话翻译器",
"version": "1.2.4",
"description": "将专业术语翻译成通俗易懂的人话",
"permissions": [
"contextMenus",
"storage",
"scripting",
"activeTab",
"management"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content/content.js"
],
"run_at": "document_idle",
"all_frames": false
}
],
"action": {
"default_popup": "popup/popup.html",
"default_icon": {
"48": "assets/icon.png"
}
},
"icons": {
"48": "assets/icon.png"
},
"options_page": "options/options.html",
"web_accessible_resources": [
{
"resources": [
"content/content.js"
],
"matches": [
"<all_urls>"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "HumanTranslate@diyun.site"
}
},
"commands": {
"translate-selection": {
"suggested_key": {
"default": "Alt+H"
},
"description": "翻译选中的文本"
}
}
}