-
Notifications
You must be signed in to change notification settings - Fork 144
/
Copy pathmanifest.json
42 lines (41 loc) · 1004 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
37
38
39
40
41
{
"version": "2.0.0",
"manifest_version": 3,
"default_locale": "en",
"description": "__MSG_appDesc__",
"name": "__MSG_appName__",
"icons": {
"128": "images/on.png",
"48": "images/on48.png",
"16": "images/on16.png"
},
"permissions": [
"proxy",
"tabs",
"storage",
"webRequest",
"webRequestAuthProvider",
"offscreen"
],
"host_permissions": [
"*://*/*"
],
"background": {
"service_worker": "background.js"
},
"commands": {
"open-option": {
"suggested_key": {
"default": "Alt+O"},
"description": "Open option page"
}
},
"options_page": "options.html",
"action": {
"default_icon": "images/off.png",
"default_title": "__MSG_title__",
"default_popup": "popup.html"
},
"update_url" : "http://clients2.google.com/service/update2/crx",
"minimum_chrome_version":"88.0.0"
}