-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
50 lines (50 loc) · 1.03 KB
/
manifest.json
File metadata and controls
50 lines (50 loc) · 1.03 KB
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
{
"manifest_version": 3,
"name": "SmartTradeAI 2.0",
"version": "2.0",
"description": "ML-powered market analysis and trading strategy Chrome Extension - 10 strategies with AI prediction",
"permissions": [
"storage",
"activeTab",
"notifications",
"scripting"
],
"host_permissions": [
"https://*.binance.com/*",
"https://api.binance.com/*",
"http://127.0.0.1:5000/*"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "assets/icon.png",
"32": "assets/icon.png",
"48": "assets/icon.png",
"128": "assets/icon.png"
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*://*.binance.com/*"
],
"js": [
"api-client.js",
"content.js"
],
"css": [
"style.css"
]
}
],
"icons": {
"16": "assets/icon.png",
"32": "assets/icon.png",
"48": "assets/icon.png",
"128": "assets/icon.png"
},
"options_page": "options.html"
}