Welcome to mirror list, hosted at ThFree Co, Russian Federation.

manifest.json « chrome - github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9fbe018cbcd79094b91df44e58b2686ce7a34c33 (plain)
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
{
  "app": {
    "background": {
      "scripts": ["bundle.js"]
    }
  },
  "manifest_version": 2,
  "name": "WebTorrent",
  "version": "0.1.0",
  "author": "Feross Aboukhadijeh",

  "description": "Simple, robust BitTorrent client for the browser",
  "icons": { "16": "calculator-16.png", "128": "calculator-128.png" },

  "permissions": [
    {
      "socket": [
        "tcp-connect:*:*",
        "tcp-listen::*",
        "udp-send-to::*",
        "udp-bind::*"
      ]
    },
    "storage",
    "unlimitedStorage",
    {
      "fileSystem": [
        "write",
        "retainEntries",
        "directory"
      ]
    },
    "http://*/*",
    "contextMenus"
  ],

  "offline_enabled": true

}