Bitford

Bitford

BitTorrent client for Chrome that can stream videos while they're being downloaded

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Bitford",
  "description": "BitTorrent client for Chrome that can stream videos while they're being downloaded",
  "version": "0.0.5",
  "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": {
    "16": "bitford-16.png",
    "48": "bitford-48.png",
    "128": "bitford-128.png"
  }
}