-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathmanifest-fx.json
83 lines (83 loc) · 2.22 KB
/
manifest-fx.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
{
"manifest_version": 2,
"name": "SAP Addon",
"version": "1.23.3",
"description": "Extension for SAP internal webpages: GitHub, Sharepoint, Jira, ...",
"icons": {
"48": "icons/icon48.png",
"96": "icons/icon96.png",
"128": "icons/icon128-96.png"
},
"content_scripts": [
{
"matches": [
"*://github.wdf.sap.corp/*",
"*://github.tools.sap/*"
],
"js": [
"utils/browser-setup.js",
"utils/storage.js",
"utils/dom-observer.js",
"utils/option-helper.js",
"utils/dom-helper.js",
"content_scripts/github/config.js",
"content_scripts/github/sign-in.js",
"content_scripts/github/hide-notice-box.js",
"content_scripts/github/username.js",
"content_scripts/github/main.js"
],
"run_at": "document_start"
},
{
"matches": [
"*://sap-my.sharepoint.com/*",
"*://login.microsoftonline.com/*"
],
"js": [
"utils/browser-setup.js",
"utils/storage.js",
"utils/dom-observer.js",
"utils/option-helper.js",
"utils/dom-helper.js",
"content_scripts/sharepoint.js"
],
"run_at": "document_start"
}
],
"permissions": [
"storage",
"*://github.wdf.sap.corp/*",
"*://github.tools.sap/*"
],
"optional_permissions": [
"*://sap.stackenterprise.co/*",
"*://app.mural.co/*",
"*://github.concur.com/*",
"*://jira.tools.sap/*",
"*://app.pluralsight.com/*",
"*://common.repositories.cloud.sap/*",
"*://eng-srv.accounts.ondemand.com/*"
],
"background": {
"scripts": [
"utils/browser-setup.js",
"utils/storage.js",
"utils/option-helper.js",
"background_scripts/fx-on-tab-change.js",
"background_scripts/fetch-github-name.js",
"background_scripts/fx-message-listener.js",
"shared/dynamic-content-scripts-config.js",
"background_scripts/fx-permission-manager.js"
]
},
"browser_action": {
"default_icon": "icons/icon48.png",
"default_title": "SAP Addon",
"default_popup": "popup/popup.html"
},
"browser_specific_settings": {
"gecko": {
"update_url": "https://nikolockenvitz.github.io/sap-addon/updates.json"
}
}
}