-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
39 lines (39 loc) · 1.01 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
{
"manifest_version": 3,
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"version": "0.1.3",
"default_locale": "en",
"background": {
"service_worker": "scripts/background.js"
},
"permissions": [
"tabs",
"activeTab",
"scripting",
"contextMenus",
"storage"
],
"action": {
"default_title": "__MSG_extensionName__",
"default_icon": {
"16": "src/assets/logo.png",
"48": "src/assets/logo.png",
"128": "src/assets/logo.png"
},
"default_popup": ""
},
"icons": {
"48": "src/assets/logo.png"
},
"host_permissions": [
"http://*/*",
"https://*/*"
],
"web_accessible_resources": [
{
"resources": ["src/assets/logo.png", "src/assets/active.png", "src/assets/inactive.png","src/assets/main.css", "_locales/*/messages.json"],
"matches": ["http://*/*", "https://*/*"]
}
]
}