-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
29 lines (29 loc) · 786 Bytes
/
manifest.json
File metadata and controls
29 lines (29 loc) · 786 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
{
"manifest_version": 3,
"name": "__MSG_extensionName__",
"version": "2.0.0",
"description": "__MSG_extensionDescription__",
"default_locale": "en",
"permissions": ["bookmarks", "downloads", "storage", "identity"],
"optional_host_permissions": ["https://www.googleapis.com/*"],
"oauth2": {
"client_id": "YOUR_CLIENT_ID.apps.googleusercontent.com",
"scopes": ["https://www.googleapis.com/auth/drive.file"]
},
"background": {
"service_worker": "service-worker.js"
},
"action": {
"default_popup": "build/bookmarkr.html",
"default_icon": {
"16": "icons/icon16-dark.png",
"48": "icons/icon48-dark.png",
"128": "icons/icon128-dark.png"
}
},
"icons": {
"16": "icons/icon16-dark.png",
"48": "icons/icon48-dark.png",
"128": "icons/icon128-dark.png"
}
}