aboutsummaryrefslogtreecommitdiff
path: root/chrome/manifest.json
blob: 4e29f6ab18a37c8a6adc1700c1116a457d7d5c3f (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
{
  "manifest_version": 2,
  "name": "VK Player Controller",
  "description": "This is a part of VK Player Controller for OS X. For more information, please visit https://ch1p.com/vkpc/",
  "version": "3.1",
  "icons": {
    "128": "icons/128.png",
    "16": "icons/16.png",
    "32": "icons/32.png"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://vk.com; object-src 'self' 'unsafe-eval'",
  "permissions": [
    "tabs",
    "background",
    "https://vk.com/*",
    "http://vk.com/*",
    "https://*.vk.com/*",
    "http://*.vk.com/*"
  ],
  "background": {
    "scripts": [
      "common.js",
      "bg.js"
    ]
  },
  "externally_connectable": {
    "matches": ["https://vk.com/*", "http://vk.com/*", "https://*.vk.com/*", "http://*.vk.com/*"]
  },
  "web_accessible_resources": ["inject_and_return.js", "inject_exec.js", "vkpc.js"]
}