aboutsummaryrefslogtreecommitdiff
path: root/extensions/chrome/manifest.json
blob: f7b29d7b2e6672164d7aaef6963d972b772825ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  "manifest_version": 2,
  "name": "__MSG_title__",
  "description": "__MSG_description_short__",
  "version": "0.1",
  "default_locale": "en",
  "permissions": [
    "background",
    "tabs",
    "https://vk.com/*",
    "http://vk.com/*",
    "https://*.vk.com/*",
    "http://*.vk.com/*"
  ],
  "background": {
    "scripts": ["common.js"]
  },
  "externally_connectable": {
    "matches": ["https://vk.com/*", "http://vk.com/*", "https://*.vk.com/*", "http://*.vk.com/*"]
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://vk.com; object-src 'self' 'unsafe-eval'",
  "web_accessible_resources": ["inject_and_return.js", "inject_exec.js"]
}