forked from ProTipHQ/ProTip
-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
64 lines (64 loc) · 2.11 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
{
"background": {
"scripts": [
"init/error-log.js",
"lib/jquery-2.1.3.min.js",
"lib/promise.min.js",
"lib/underscore-min.js",
"lib/date.js",
"lib/cryptojs.min.js",
"lib/bitcoinjs-lib.min.js",
"lib/preferences.js",
"lib/util.js",
"lib/currency-manager.js",
"lib/wallet.js",
"js/payment-manager.js",
"lib/ydn-db.min.js",
"js/ydn-db-schema.js",
"js/alarm-manager.js",
"js/utils-bitcoin.js",
"background.js"
]
},
"web_accessible_resources": ["assets/images/star.png", "assets/images/play.png"],
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": [
"init/error-log.js",
"lib/jquery-2.1.3.min.js",
"content.js",
"js/utils-bitcoin.js",
"lib/bitcoinjs-lib.min.js"
]
}
],
"icons": { "16": "assets/images/heart16x16.png",
"48": "assets/images/heart48x48.png",
"128": "assets/images/heart128x128.png" },
"browser_action": {
"default_icon": "assets/images/heart48x48_passive.png",
"default_popup": "views/popup.html",
"default_title": "ProTip"
},
"description": "ProTip is peer to peer crowd funding. ProTip provides tipping, weekly subscriptions and content passes for premium work.",
"icons": {
"128": "assets/images/heart128x128.png"
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
"permissions": [
"https://api.blockcypher.com/*",
"http://blockchain.info/*",
"https://blockchain.info/*",
"wss://ws.blockchain.info:*",
"https://api.bitcoinaverage.com/ticker/*"
],
"incognito": "not_allowed",
"manifest_version": 2,
"name": "ProTip peer-to-peer crowd-funding",
"short_name": "ProTip",
"options_page": "views/options.html",
"permissions": [ "idle", "tabs", "storage", "alarms", "notifications" ],
"update_url": "https://clients2.google.com/service/update2/crx",
"version": "1.0.0.40"
}