aboutsummaryrefslogtreecommitdiff
path: root/extensions/chrome/manifest.json
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/chrome/manifest.json')
-rw-r--r--extensions/chrome/manifest.json23
1 files changed, 23 insertions, 0 deletions
diff --git a/extensions/chrome/manifest.json b/extensions/chrome/manifest.json
new file mode 100644
index 0000000..f7b29d7
--- /dev/null
+++ b/extensions/chrome/manifest.json
@@ -0,0 +1,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"]
+}