-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
36 lines (36 loc) · 856 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
33
34
35
36
{
"name": "__MSG_name__",
"short_name": "Auto Mute",
"author": "Tumuyan",
"version": "0.2.3",
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
"manifest_version": 3,
"minimum_chrome_version": "22.0",
"default_locale": "en",
"description": "__MSG_aboutText__",
"background": {
"service_worker": "scripts/background.js",
"type": "module"
},
"permissions": [
"storage",
"tabs",
"contextMenus"
],
"icons": {
"16": "images/logo-16.png",
"32": "images/logo-32.png",
"48": "images/logo-48.png",
"128": "images/logo-128.png"
},
"action": {
"default_icon": {
"19": "images/logo-19.png",
"38": "images/logo-38.png",
"32": "images/logo-32.png",
"48": "images/logo-48.png",
"128": "images/logo-128.png"
},
"default_popup": "popup.html"
}
}