VOX Music Player Helper

VOX Music Player Helper

Easy way to import and play any track from YouTube or SoundCloud in VOX Music Player for Mac.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "VOX Music Player Helper",
  "version": "1.3",
  "permissions": [
    "storage"
  ],
  "description": "Easy way to import and play any track from YouTube or SoundCloud in VOX Music Player for Mac.",
  "icons": {
    "16": "images/icon-16.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "default_locale": "en",
  "homepage_url": "https://vox.rocks",
  "action": {
    "default_icon": {
      "16": "images/icon-16.png",
      "48": "images/icon-48.png"
    },
    "default_title": "VOX Player Chrome Extension",
    "browser_style": true,
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "youtubeBundle.min.js"
      ],
      "css": [
        "styles/elements.css"
      ]
    },
    {
      "matches": [
        "*://*.soundcloud.com/*"
      ],
      "js": [
        "soundCloudBundle.min.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/svg/*.svg",
        "styles/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}