summaryrefslogtreecommitdiffstats
path: root/tools/memory_inspector/chrome_app/template/manifest.json
blob: a88b39f0237b6ba77978eec2fec4cb17935ffd63 (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
{
  "name": "Memory Inspector",
  "description": "Memory inspector tool for Android",
  "version": "0.1.0",
  "manifest_version": 2,
  "icons": {
    "16": "images/icon_16.png",
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  },
  "app": {
    "background": {
      "scripts": [
        "background.js"
      ]
    }
  },
  "permissions": [
    "storage",
    "system.storage",
    "unlimitedStorage",
    "fileSystem",
    "webview",
    {
      "socket": [
        "tcp-listen:*:*",
        "tcp-connect",
        "resolve-host",
        "udp-bind:*:*",
        "udp-send-to:*:*"
      ]
    },
    "http://127.0.0.1:*/*"
  ]
}