-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
48 lines (48 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
40
41
42
43
44
45
46
47
48
{
"manifest_version": 3,
"name": "__MSG_extName__",
"version": "1.0.0",
"developer": {
"name": "ErrorGamer2000",
"url": "https://errorgamer2000.com/"
},
"background": {
"service_worker": "./dist/background.js"
},
"content_scripts": [
{
"css": [],
"js": ["./dist/content_script.js"],
"matches": ["<all_urls>"]
}
],
"commands": {},
"icons": {
"16": "./icons/x16.png",
"48": "./icons/x48.png",
"128": "./icons/x128.png",
"256": "./icons/x256.png"
},
"action": {
"default_icon": {
"16": "./icons/x16.png",
"24": "./icons/x24.png",
"32": "./icons/x32.png"
},
"default_popup": "./dist/popup.html",
"default_title": "__MSG_extName__"
},
"options_ui": {
"page": "./dist/pages/settings.html",
"open_in_tab": true
},
"permissions": ["tabs"],
"optional_permissions": [],
"web_accessible_resources": [
{
"matches": ["<all_urls>"],
"resources": ["dist/**"]
}
],
"default_locale": "en"
}