musery

musery

Delivers music from VKontakte to Telegram

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "musery",
  "short_name": "musery",
  "version": "2.3.0",
  "description": "Delivers music from VKontakte to Telegram",
  "homepage_url": "https://musery.tsellobenok.dev",
  "icons": {
    "128": "./img/128x128.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "notifications"
  ],
  "action": {
    "default_title": "musery",
    "default_popup": "index.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/img/*",
        "/js/set-user-id.js"
      ],
      "matches": [
        "https://vk.com/*",
        "https://musery.tsellobenok.dev/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://vk.com/*",
        "https://musery.tsellobenok.dev/*"
      ],
      "css": [
        "css/style.css"
      ],
      "js": [
        "js/axios.min.js",
        "js/hls.js",
        "js/jquery-3.4.1.slim.min.js",
        "js/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "/js/background.js"
  }
}