-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmanifest.json
More file actions
39 lines (39 loc) · 826 Bytes
/
manifest.json
File metadata and controls
39 lines (39 loc) · 826 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
37
38
39
{
"manifest_version": 3,
"name": "__MSG_ext_name__",
"description": "__MSG_ext_des__",
"version": "1.2",
"default_locale":"en",
"icons":
{
"128": "./img/logo.png"
},
"action":
{
"default_title": "__MSG_ext_title__"
},
"background":
{
"service_worker": "service-worker.js",
"type": "module"
},
"options_ui":
{
"page": "./html/options.html",
"open_in_tab": false
},
"permissions": ["storage", "sessions"],
"commands":{
"_execute_action":{
"suggested_key":{
"default":"Ctrl+Shift+L",
"mac":"MacCtrl+Shift+L"
}
}
},
"web_accessible_resources": [
{
"resources": ["img/*"],
"matches": ["<all_urls>"]
}]
}