-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathmanifest.json
More file actions
34 lines (34 loc) · 825 Bytes
/
manifest.json
File metadata and controls
34 lines (34 loc) · 825 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
{
"manifest_version": 2,
"name": "AutoHideDownloadsBar",
"short_name": "AutoHideDownloadsBar",
"description": "__MSG_app_description__",
"update_url": "https://clients2.google.com/service/update2/crx",
"author": "raingart",
"default_locale": "en",
"minimum_chrome_version": "80.0",
"version": "2.12.2",
"icons": {
"16": "/icons/16.png",
"48": "/icons/48.png",
"128": "/icons/128.png"
},
"permissions": [
"storage",
"downloads",
"downloads.shelf"
],
"optional_permissions": [
"tabs",
"notifications",
"downloads.open"
],
"background": {
"page": "/html/background.html",
"persistent": true
},
"browser_action": {
"default_title": "AutoHideDownloadsBar"
},
"options_page": "/html/options.html"
}