forked from EhTagTranslation/EhSyringe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
49 lines (49 loc) · 1.47 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
45
46
47
48
49
{
"manifest_version": 2,
"description": "E 站注射器,将中文翻译注入到 E 站体内。包含全站 UI 翻译和超过 10000 条标签翻译,标签数据库持续更新中。",
"__firefox__applications": {
"gecko": {
"id": "{759d5566-1dce-41ae-bae9-00dd5172c422}",
"strict_min_version": "57.0"
}
},
"icons": {
"32": "assets/logo32.png",
"16": "assets/logo16.png",
"48": "assets/logo48.png",
"128": "assets/logo128.png"
},
"omnibox": {
"keyword": "ex"
},
"background": {
"scripts": ["script/vendor.js", "script/background.js"]
},
"browser_action": {
"default_icon": {
"32": "assets/logo32.png",
"16": "assets/logo16.png",
"48": "assets/logo48.png",
"128": "assets/logo128.png"
},
"default_popup": "assets/popup.html"
},
"content_scripts": [
{
"matches": ["*://exhentai.org/*", "*://e-hentai.org/*", "*://*.exhentai.org/*", "*://*.e-hentai.org/*"],
"exclude_matches": ["*://forums.e-hentai.org/*"],
"js": ["script/vendor.js", "script/page.js"],
"run_at": "document_start"
}
],
"permissions": [
"*://exhentai.org/*",
"*://e-hentai.org/*",
"*://*.exhentai.org/*",
"*://*.e-hentai.org/*",
"activeTab",
"notifications",
"storage",
"contextMenus"
]
}