-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
56 lines (56 loc) · 1.42 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
{
"name": "Smartbroker Enhancer",
"version": "0.9.4",
"manifest_version": 2,
"description": "This extension should help to enhance smartbroker.de",
"homepage_url": "https://smartbroker.de",
"icons": {
"16": "icons/favicon-16x16.png",
"48": "icons/android-icon-48x48.png",
"128": "icons/128.png"
},
"default_locale": "en",
"background": {
"scripts": [
"src/bg/background.js"
],
"persistent": true
},
"browser_action": {
"default_icon": "icons/19.png",
"default_title": "browser action demo",
"default_popup": "src/browser_action/browser_action.html"
},
"permissions": [
"notifications",
"storage",
"*://*.dab-bank.de/*",
"*://*.dab-bank.com/*",
"*://*.smartbroker.de/*",
"*://*.smartbroker.com/*",
"*://*.finanzen.net/*",
"*://*.tradingview.com/*"
],
"content_scripts": [
{
"matches": [
"https://www.google.com/*",
"https://b2b.dab-bank.de/*",
"https://*.tradingview.com/*",
"https://www.smartbroker.de/*"
],
"js": [
"js/jquery/jquery.js",
"js/datatables/datatables.min.js",
"js/moment/moment.js",
"js/chartjs/chart.min.js",
"js/knockout/knockout-3.5.1.js",
"src/inject/inject.js"
],
"css": [
"js/datatables/datatables.css"
]
}
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}