-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmanifest.json
More file actions
39 lines (39 loc) · 932 Bytes
/
manifest.json
File metadata and controls
39 lines (39 loc) · 932 Bytes
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
{
"manifest_version": 2,
"name": "Extend",
"description": "Chrome browser extension that brings Ethereum to popular social websites",
"version": "1.2",
"background": {
"scripts": ["web3.js", "background.js"],
"persistent": true
},
"browser_action": {
"default_title": "Extend",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https://www.reddit.com/r/ethereum/*",
"https://www.reddit.com/r/ethtrader/*",
"https://www.reddit.com/r/ethdev/*"
],
"css": [],
"js": ["jquery-slim.js", "page.js"]
}
],
"permissions": [
"storage",
"identity",
"*://*.google.com/*",
"https://www.reddit.com/r/ethereum/*",
"https://www.reddit.com/r/ethtrader/*",
"https://www.reddit.com/r/ethdev/*"
],
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"128": "icon128.png"
}
}