-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
40 lines (40 loc) · 1.01 KB
/
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
{
"manifest_version": 3,
"name": "Foundry Pro",
"description": "This tool adds new menu items to the Palantir Foundry UI for developers.",
"author": "Christopher Koch",
"version": "0",
"action": {
"default_popup": "popup.html",
"default_title": "Foundry Pro Chrome Extension"
},
"permissions": ["storage"],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["init.js", "content.js"],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"matches": ["*://*/*"],
"resources": [
"content.js",
"src/icon/*",
"*.eot",
"*.woff",
"*.woff2",
"*.ttf"
]
}
],
"icons": {
"16": "icon/icon16_light.png",
"48": "icon/icon48_light.png",
"128": "icon/icon128_light.png"
}
}