This repository has been archived by the owner on May 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathmanifest.json
58 lines (58 loc) · 1.56 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
50
51
52
53
54
55
56
57
58
{
"manifest_version": 2,
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"author": "Santo Pfingsten",
"default_locale": "en",
"version": "2.2.8",
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "57.0"
}
},
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"64": "icons/icon64.png",
"96": "icons/icon96.png",
"128": "icons/icon128.png"
},
"browser_action": {
"default_icon": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"64": "icons/icon64.png",
"96": "icons/icon96.png",
"128": "icons/icon128.png"
},
"default_popup": "views/popup.html",
"default_title": "__MSG_actionTitle__"
},
"background": {
"scripts": [
"dist/background.js"
]
},
"content_scripts": [{
"matches": [ "https://lusito.github.io/web-ext-translator/*" ],
"js": [ "dist/wetLayerContent.js" ],
"run_at": "document_idle"
}],
"permissions": [
"storage",
"tabs",
"browsingData",
"cookies",
"downloads",
"history",
"notifications",
"webNavigation",
"webRequest",
"webRequestBlocking",
"contextualIdentities",
"<all_urls>"
]
}