Advertisement
Guest User

manifest.json

a guest
May 2nd, 2016
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 1.66 KB | None | 0 0
  1. {
  2.   "name": "VK scrobbler",
  3.   "description": "Скробблинг проигрываемой на vk.com музыки на last.fm",
  4.   "icons": {
  5.     "128": "blocks/logo/logo_128.png"
  6.   },
  7.   "version": "2.0.1",
  8.   "manifest_version": 2,
  9.   "minimum_chrome_version": "41.0",
  10.   "background": {
  11.     "page": "blocks/background/background.html"
  12.   },
  13.   "applications": {
  14.     "gecko": {
  15.       "id": "vk-scrobbler@stsdc.org"
  16.     }
  17.   },
  18.   "permissions": [
  19.     "tabs",
  20.     "notifications",
  21.     "*://*.vk.com/*"
  22.   ],
  23.   "javascript_modules": [{
  24.     "name": "extension",
  25.     "apis": [
  26.       "getURL"
  27.     ]
  28.   }],
  29.   "content_scripts": [{
  30.     "matches": ["*://*.vk.com/*"],
  31.     "js": [
  32.       "blocks/namespace/namespace.js",
  33.       "blocks/indicators/indicators__utils.js",
  34.       "blocks/indicators/indicators.js",
  35.       "blocks/indicators/indicators__old.js",
  36.       "blocks/bus/bus__content.js",
  37.       "blocks/content/content__messages.js",
  38.       "blocks/content/content__bus-wrapper.js",
  39.       "blocks/content/content__script-injector.js",
  40.       "blocks/content/content__utils.js",
  41.       "blocks/content/content__player-handlers.js",
  42.       "blocks/content/content.js"
  43.     ],
  44.     "css": [
  45.       "blocks/indicators/indicators.css",
  46.       "blocks/indicators/indicators__old.css"
  47.     ]
  48.   }],
  49.   "homepage_url": "http://vkontakte.ru/vk_scrobbler",
  50.   "web_accessible_resources": [
  51.     "blocks/indicators/__icon/*",
  52.     "blocks/namespace/*",
  53.     "blocks/vk-inner/*",
  54.     "moz-extension://*"
  55.   ],
  56.   "content_security_policy": "script-src 'self' https://ws.audioscrobbler.com https://ssl.google-analytics.com; object-src 'self'; style-src 'self' 'unsafe-inline';"
  57. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement