-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
manifest.json
55 lines (53 loc) · 1.05 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
{
"manifest_version": 2,
"name": "Bitford",
"description": "BitTorrent client for Chrome that can stream videos while they're being downloaded",
"version": "0.0",
"permissions": [
{
"socket": ["tcp-connect:*:*", "tcp-listen::*", "udp-send-to::*"]
},
"storage",
"unlimitedStorage",
"fileSystem",
"fileSystem.write",
"http://*/*",
"webview"
],
"app": {
"background": {
"scripts": [
"lib/digest.js",
"lib/base64.js",
"src/socket.js",
"src/bufferlist.js",
"src/arrayeq.js",
"src/benc.js",
"src/mime.js",
"src/rate.js",
"src/shaper.js",
"src/torrent.js",
"src/tracker.js",
"src/peer.js",
"src/store-backend.js",
"src/store.js",
"src/http-server.js",
"src/http-stream.js",
"src/background.js"
],
"persistent": true
}
},
"file_handlers": {
"any": {
"title": "Start BitTorrent download",
"types": ["application/x-bittorrent"],
"extensions": ["torrent"]
}
},
"icons": {
"128": "bitford-128.png",
"48": "bitford-48.png",
"16": "bitford-16.png"
}
}