-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
36 lines (32 loc) · 998 Bytes
/
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
{
"key":"MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAx0UNIg9OL7G3Q1m4aeaTrXCoSkoDm3K/bxbDnfi0SerWpHnl114MpJBw8I0fXwhpy9zzPuqVUM3jh7bZSlgcVE+57NdD3kswL35CHbmgo5DiaO6VjnLfh4mr0p7zoktnrfTAChT5fP2l+1mV2kro3GhMC5Ao61H3vCOLFbUJAveUcMeTvSQxIVWKTDqsB1C73JYO4sMTzDZnHrFMB8pZXLHlju4cE1LHEAYb4JSCO9w+qSd9gOdOy/hEtgpbaRnYny2juzv7q2ZsRa53DwPLkZ1aNWRv34pXJI3GqoIOvuNcbRSXhyPxLJlUiDP4c/MgDRiVTbdFK9O3dodCLsxcpQIDAQAB",
"description": "The Ipfs web extension",
"manifest_version": 2,
"name": "IPFS",
"version": "1.0",
"icons": {
"48": "icons/ipfs-48.png",
"128": "icons/ipfs-128.png"
},
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "50.0"
}
},
"background": {
"scripts": ["background.js"]
},
"browser_action": {
"default_icon": "icons/ipfs-logo-vector-ice.svg"
},
"permissions": [
"nativeMessaging",
"webRequest",
"webRequestBlocking",
"tabs",
"*://*.ipfs.io/",
"*://ipfs.io/",
"https://*/"
]
}