Yandex Music Albums In VK

Yandex Music Albums In VK

Adds player for music albums from music.yandex.ru

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "version": "0.1",
  "omnibox": {
    "keyword": "Yandex Music Albums In VK"
  },
  "icons": {
    "16": "16-full-color.png"
  },
  "description": "__MSG_extensionDescription__",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://vk.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "default_locale": "en",
  "permissions": [
    "*://vk.com/*",
    "activeTab",
    "declarativeContent",
    "tabs"
  ]
}