-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
50 lines (50 loc) · 1.39 KB
/
Copy pathmanifest.json
File metadata and controls
50 lines (50 loc) · 1.39 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
45
46
47
48
49
50
{
"name": "Decipher Tools",
"version": "0.0.8.2",
"manifest_version": 2,
"description": "This extension adds additional functionality and a more functional UI to the Decipher platform.",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"default_locale": "en",
"page_action": {
"default_icon": "icons/icon19.png",
"default_title": "Decipher Tools",
"default_popup": "src/popup/popup.html"
},
"permissions": [
"contentSettings",
"notifications",
"storage"
],
"web_accessible_resources": [
"css/*.css"
],
"content_scripts": [
{
"matches": ["https://v2.decipherinc.com/apps/lumos/bec/*:edit"],
"js": ["src/inject/builder/builder.js"],
"css": ["src/inject/builder/builder.css"]
},
{
"matches": ["https://v2.decipherinc.com/apps/lumos/bec/*:xmledit"],
"js": ["src/inject/xml/xml.js"]
},
{
"matches": ["https://v2.decipherinc.com/rep/selfserve/bec/*:dashboard*"],
"js": ["src/inject/field_report/field_report.js"],
"css": ["src/inject/field_report/field_report.css"]
},
{
"matches": ["https://v2.decipherinc.com/apps/portal*"],
"include_globs": ["*#/projects/list*"],
"js": ["src/inject/portal/portal.js"],
"css": ["src/inject/portal/portal.css"]
}
],
"background": {
"scripts": ["src/background.js"]
}
}