forked from brettshepherd/BOG-Extension
-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
44 lines (41 loc) · 1.06 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
{
"manifest_version": 3,
"name": "Bogged.Finance",
"version": "0.1",
"description": "A tool to provide quick access to Bogged.Finance charts and orders on commonly used crypto platforms.",
"content_scripts": [
{
"matches": [
"https://www.coingecko.com/*/*/*",
"https://coinmarketcap.com/currencies/*",
"https://coinmarketcap.com/*/currencies/*",
"https://bscscan.com/token/*",
"https://exchange.pancakeswap.finance/*"
],
"js": ["widget/content.js"],
"css": ["widget/widget.css"]
}
],
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [
{
"resources": [
"widget/widget.html",
"assets/logo.svg",
"assets/order.svg",
"assets/charts.svg"
],
"matches": ["http://*/*", "https://*/*"],
"extension_ids": []
}
],
"options_page": "options/options.html",
"permissions": ["storage"],
"icons": {
"16": "assets/[email protected]",
"48": "assets/[email protected]",
"128": "assets/[email protected]"
}
}