Yandex Music Addon

Yandex Music Addon

Расширение для веб версии Яндекс.Музыки, которое добавляет дополнительные возможности Сейчас есть такие возможности как: -…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Yandex Music Addon",
  "version": "1.0",
  "manifest_version": 3,
  "permissions": [
    "declarativeContent",
    "activeTab",
    "scripting",
    "tabs",
    "nativeMessaging"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://music.yandex.ru/*",
        "*://music.yandex.net/*",
        "*://music.yandex.com/*"
      ],
      "all_frames": true,
      "js": [
        "script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content.js"
      ],
      "matches": [
        "*://music.yandex.ru/*",
        "*://music.yandex.net/*",
        "*://music.yandex.com/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://music.yandex.ru/*",
      "*://music.yandex.net/*",
      "*://music.yandex.com/*"
    ]
  },
  "action": {
    "default_popup": "index.html",
    "default_icon": {
      "16": "16x16.png",
      "48": "48x48.png",
      "128": "128x128.png"
    }
  }
}