forked from dbeck121/CPI-Helper-Chrome-Extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
108 lines (108 loc) · 3.09 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "SAP CPI Helper",
"short_name": "CPI Helper",
"version": "3.14.2",
"description": "Extends the SAP Cloud Platform Integration with some useful features to improve usability.",
"author": "Dominic Beckbauer",
"homepage_url": "https://github.com/dbeck121/CPI-Helper-Chrome-Extension",
"host_permissions": [
"https://*.hana.ondemand.com/itspaces",
"https://*.platform.sapcloud.cn/itspaces",
"https://*.hana.ondemand.com/shell",
"https://*.platform.sapcloud.cn/itspaces"
],
"permissions": [
"storage",
"webRequest"
],
"background": {
"service_worker": "background/background.js"
},
"content_scripts": [
{
"matches": [
"https://*.hana.ondemand.com/shell/design/*",
"https://*.hana.ondemand.com/itspaces/*",
"https://*.hana.ondemand.com/shell/*",
"https://*.platform.sapcloud.cn/itspaces/*",
"https://*.platform.sapcloud.cn/shell/*"
],
"js": [
"/lib/ulog/ulog-full.min.js",
"/lib/ace/ace.min.js",
"/lib/ace/ext-searchbox.js",
"/lib/ace/theme-textmate.js",
"/lib/ace/theme-github_dark.js",
"/lib/ace/mode-json.js",
"/lib/ace/mode-sql.js",
"/lib/ace/mode-text.js",
"/lib/ace/mode-xml.js",
"/lib/ace/ace.js",
"/lib/jszip/jszip.min.js",
"/lib/xmlToJson/xmlToJson.js",
"/lib/jQuery/jquery.min.js",
"/lib/semanticui/semantic.min.js",
"/lib/semanticui/tablesort.js",
"/common/logging.js",
"/common/tools.js",
"/scripts/identify-tenant.js",
"/plugins/run.js",
"/plugins/simplenotepad.js",
"/plugins/reference.js",
"/plugins/undeploy.js",
"/plugins/unlock.js",
"/plugins/credentialHelper.js",
"/plugins/cpitransporter.js",
"/plugins/figaf.js",
"/plugins/OpenAIServices.js",
"/plugins/WHINT_IFD.js",
"/plugins/settingsPaneResizer.js",
"/plugins/timeline.js",
"/plugins/traceModifer.js",
"/plugins/removeApacheUpdateMessage.js",
"/plugins/messageidlogs.js",
"/scripts/ui.js",
"/scripts/logs.js",
"/whatsNew/whatsNewLog.js",
"/whatsNew/whatsNew.js",
"/scripts/plugins.js",
"/scripts/Mode-Script.js",
"/scripts/contentScript.js"
],
"css": [
"/lib/semanticui/semantic.min.css",
"/css/contentScript.css",
"/css/plugin.css"
]
}
],
"action": {
"default_popup": "popup/popup.html",
"default_icon": {
"16": "images/v4/16.png",
"32": "images/v4/32.png",
"48": "images/v4/48.png",
"128": "images/v4/128.png"
}
},
"icons": {
"16": "images/v4/16.png",
"32": "images/v4/32.png",
"48": "images/v4/48.png",
"128": "images/v4/128.png"
},
"web_accessible_resources": [
{
"resources": [
"images/favicons/*.png",
"lib/semanticui/*",
"images/*"
],
"matches": [
"https://*.hana.ondemand.com/*",
"https://*.platform.sapcloud.cn/*"
]
}
],
"manifest_version": 3
}