forked from steven-tomlinson/lockbox-codex-forge
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.template.json
More file actions
42 lines (42 loc) · 975 Bytes
/
manifest.template.json
File metadata and controls
42 lines (42 loc) · 975 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
35
36
37
38
39
40
41
42
{
"manifest_version": 3,
"name": "Lockb0x Protocol Codex Forge",
"description": "A Chrome extension for interacting with the Lockb0x protocol codex.",
"version": "1.0.0",
"background": {
"service_worker": "background.js",
"type": "module"
},
"action": {
"default_popup": "popup/popup.html",
"default_icon": {
"128": "icons/icon128.png"
}
},
"icons": {
"128": "icons/icon128.png"
},
"permissions": [
"storage",
"activeTab",
"scripting",
"contextMenus",
"identity",
"downloads"
],
"host_permissions": ["<all_urls>"],
"web_accessible_resources": [
{
"resources": ["lib/vendor/ajv.min.js"],
"matches": ["<all_urls>"]
}
],
"oauth2": {
"client_id": "${CHROME_OAUTH_CLIENT_ID}",
"scopes": [
"https://www.googleapis.com/auth/drive.file",
"https://www.googleapis.com/auth/userinfo.email",
"https://www.googleapis.com/auth/userinfo.profile"
]
}
}