forked from jae-jae/Userscript-Plus
-
-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathchrome.json
More file actions
36 lines (36 loc) · 810 Bytes
/
Copy pathchrome.json
File metadata and controls
36 lines (36 loc) · 810 Bytes
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
{
"$schema": "https://json.schemastore.org/chrome-manifest",
"manifest_version": 3,
"default_locale": "en",
"name": "__MSG_extName__",
"description": "__MSG_extShortDesc__",
"short_name": "userJSPlus",
"background": {
"service_worker": "/js/background.js",
"type": "module"
},
"minimum_chrome_version": "105.0",
"options_page": "settings.html",
"optional_host_permissions": [
"<all_urls>"
],
"icons": {
"16": "img/icon_16.png",
"32": "img/icon_32.png",
"64": "img/icon_64.png",
"128": "img/icon_128.png"
},
"action": {
"default_icon": {
"16": "img/icon_16.png",
"32": "img/icon_32.png",
"64": "img/icon_64.png"
},
"default_popup": "popup.html"
},
"permissions": [
"activeTab",
"scripting",
"storage"
]
}