forked from nirvanatikku/bittrex-enhanced
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
40 lines (38 loc) · 1.14 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
{
"manifest_version": 2,
"name": "Bittrex Enhanced",
"description": "Enhance your Bittrex experience by including USD values alongside BTC & ETH prices, and using the TradingView chart widget instead.",
"version": "1.8.0",
"browser_action": {
"default_title": "Enhance Trex",
"default_popup": "settings.html"
},
"permissions": [
"storage",
"activeTab",
"https://bittrex.com/*"
],
"background": {
"scripts": ["background.js"],
"persistent": true
},
"icons": {
"128": "icon128.png"
},
"content_scripts": [
{
"matches": [
"https://bittrex.com/Market/Index?MarketName=BTC-*",
"https://bittrex.com/Market/Index?MarketName=ETH-*",
"https://bittrex.com/Market/Index?MarketName=USDT-*",
"https://bittrex.com/Balance",
"https://bittrex.com/home/markets*",
"https://bittrex.com/Home/Markets*",
"https://bittrex.com/"
],
"js": ["enhancer.js"],
"css": ["enhanced-styles.css"]
}
],
"content_security_policy": "default-src 'none'; style-src 'self' 'unsafe-inline'; script-src 'self'; connect-src https://s3.tradingview.com;"
}