-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathmanifest.json
More file actions
67 lines (59 loc) · 1.64 KB
/
manifest.json
File metadata and controls
67 lines (59 loc) · 1.64 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"manifest_version": 2,
"name": "Earth Wallet",
"version": "1.0.1",
"icons": {
"16": "assets/images/icon-16.png",
"32": "assets/images/icon-32.png",
"48": "assets/images/icon-48.png",
"64": "assets/images/icon-64.png",
"128": "assets/images/icon-128.png"
},
"description": "The Wallet for Earth.",
"homepage_url": "https://github.com/earthdao/wallet",
"short_name": "Earth Wallet",
"permissions": [
"activeTab",
"storage",
"http://*/*",
"https://*/*",
"chrome://favicon/"
],
"content_security_policy": "script-src 'self' blob: 'unsafe-eval' 'wasm-eval'; object-src 'self'; script-src-elem 'self' data:;",
"__chrome|firefox__author": "earth",
"__opera__developer": {
"name": "earth"
},
"__firefox__applications": {
"gecko": {
"id": "{754FB1AD-CC3B-4856-B6A0-7786F8CA9D17}"
}
},
"__chrome__minimum_chrome_version": "49",
"__opera__minimum_opera_version": "36",
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"16": "assets/images/icon-16.png",
"32": "assets/images/icon-32.png",
"48": "assets/images/icon-48.png",
"64": "assets/images/icon-64.png",
"128": "assets/images/icon-128.png"
},
"default_title": "Earth Wallet",
"__chrome|opera__chrome_style": false,
"__firefox__browser_style": false
},
"background": {
"scripts": ["js/background.bundle.js"],
"__chrome|opera__persistent": false
},
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["js/contentScript.bundle.js"],
"run_at": "document_start",
"all_frames": false
}
]
}