-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.json
32 lines (32 loc) · 881 Bytes
/
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
{
"manifest_version": 3,
"minimum_chrome_version": "96",
"name": "__MSG_extName__",
"version": "1.0.1",
"author": "__MSG_author__",
"description": "__MSG_description__",
"icons": {
"16": "icon/16.png",
"32": "icon/32.png",
"48": "icon/48.png",
"64": "icon/64.png",
"96": "icon/96.png",
"128": "icon/128.png",
"256": "icon/256.png"
},
"permissions": [
"activeTab",
"contextMenus",
"declarativeNetRequestWithHostAccess",
"scripting"
],
"host_permissions": [
"<all_urls>"
],
"default_locale": "en",
"key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDFCsceeED+YYEgjs62IOuxXEH0H/1cCsqiWp34spoHcSbkWC/8dP1oGlJci8Wpa6+bQkzpCVe14bVHpca8JZ7r8Y0ESs/NptuGKq57xsWgOJ/gnoxV1vWmO1pUTOiLSvxXYunFczMSsqNB3ZXdY3H0gmZzAXOnfDrLJNqWmZIVSwIDAQAB",
"background": {
"service_worker": "bg/bg.js",
"type": "module"
}
}