forked from steven-tomlinson/lockbox-codex-forge
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
44 lines (44 loc) · 1.01 KB
/
manifest.json
File metadata and controls
44 lines (44 loc) · 1.01 KB
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
43
44
{
"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": "873765379611-dit7f0lj8ej3o10jkegmvk6ifj7826op.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/drive.file",
"https://www.googleapis.com/auth/userinfo.email",
"https://www.googleapis.com/auth/userinfo.profile"
]
}
}