-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
59 lines (59 loc) · 1.24 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
{
"name": "Wika Network",
"description": "Official Google Chrome plug-in to interact with Wika Network blockchain",
"version": "1.0",
"manifest_version": 2,
"permissions": [
"activeTab",
"tabs",
"https://app.wika.network/*"
],
"background": {
"scripts": [
"/background/background.js"
],
"persistent": true
},
"browser_action": {
"default_title": "Wika Network"
},
"icons": {
"16": "/images/logo16.png",
"32": "/images/logo32.png",
"48": "/images/logo48.png",
"128": "/images/logo128.png"
},
"content_scripts": [
{
"js": [
"widget/code.js",
"widget/div1_logo.js",
"widget/div2_page_likes.js",
"widget/div3_my_likes.js",
"widget/div4_balance.js",
"widget/div5_move.js",
"widget/css.js",
"widget/inject.js"
],
"matches": [
"*://*/*"
],
"exclude_matches": [
"https://app.wika.network/*",
"https://app.slack.com/*",
"https://*.google.com/*"
],
"all_frames": false
},
{
"js": [
"bridge/code.js",
"bridge/app.js"
],
"matches": [
"https://app.wika.network/*"
],
"all_frames": false
}
]
}