-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
53 lines (53 loc) · 1.2 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
{
"manifest_version": 3,
"name": "MinaMap",
"version": "1.2",
"description": "A Chrome extension for $MINA transaction flow visualization.",
"icons": {
"16": "img/logo-16.png",
"48": "img/logo-16.png",
"128": "img/logo-16.png"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"https://*.minascan.io/*",
"https://*.minaexplorer.com/*"
],
"js": [
"scripts/d3.v7.min.js",
"scripts/load.js",
"scripts/jquery-3.5.1.min.js",
"scripts/layui.js"
],
"css": [
"css/styles.css",
"css/layui.css"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
{
"resources": [
"scripts/d3.v7.min.js"
],
"matches": ["https://*.minaexplorer.com/*"]
}
],
"host_permissions": [
"https://*.minascan.io/*",
"https://*.minaexplorer.com/*"
],
"action": {
"default_popup": "options/options.html",
"default_title": "MinaMap"
},
"options_ui": {
"page": "options/options.html",
"open_in_tab": false
}
}