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
|
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "__MSG_extensionName__",
"short_name": "__MSG_extensionDescription__",
"default_locale": "en",
"version": "3.5.1",
"icons": {
"16": "icons/16.png",
"48": "icons/48.png",
"128": "icons/128.png"
},
"author": "GEN Digital Inc.",
"permissions": [
"tabs",
"storage",
"notifications",
"webRequest",
"webNavigation",
"declarativeNetRequest",
"scripting"
],
"host_permissions": [
"*://*/*"
],
"background": {
"service_worker": "data/background.js",
"matches": [
"<all_urls>"
]
},
"options_ui": {
"page": "data/options.html"
},
"action": {
"default_popup": "data/menu/index.html",
"default_icon": {
"16": "icons/16.png",
"32": "icons/32.png"
}
}
}
|