AudioVibe Visuals

AudioVibe Visuals

AudioVibe Visuals is an audio visualizer available on any web page offering different styles and color customization.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "AudioVibe Visuals",
  "short_name": "AudioVibe",
  "description": "AudioVibe Visuals is an audio visualizer available on any web page offering different styles and color customization.",
  "version": "0.2.0",
  "version_name": "2.0 Beta",
  "minimum_chrome_version": "116",
  "author": {
    "email": "[email protected]"
  },
  "permissions": [
    "tabCapture",
    "storage",
    "activeTab",
    "offscreen",
    "scripting"
  ],
  "action": {
    "default_icon": {
      "16": "images/icon16.png"
    },
    "default_title": "AudioVibe Visuals",
    "default_popup": "action/action.html"
  },
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/VolumeLevelBars/GREEN.png",
        "images/VolumeLevelBars/YELLOW.png",
        "images/VolumeLevelBars/RED.png",
        "images/VolumeLevelBars/PEAK_RED.png"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "background": {
    "service_worker": "background/service-worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://music.youtube.com/*"
      ],
      "js": [
        "contentScripts/ytMusic.js"
      ]
    },
    {
      "matches": [
        "https://*.spotify.com/*"
      ],
      "js": [
        "contentScripts/spotify.js"
      ]
    },
    {
      "matches": [
        "https://soundcloud.com/*"
      ],
      "js": [
        "contentScripts/soundcloud.js"
      ]
    },
    {
      "matches": [
        "https://*/*"
      ],
      "exclude_matches": [
        "https://music.youtube.com/*",
        "https://*.spotify.com/*",
        "https://soundcloud.com/*"
      ],
      "js": [
        "contentScripts/universal.js"
      ]
    },
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "contentScripts/contentScript.js"
      ]
    },
    {
      "matches": [
        "https://extensionpay.com/*"
      ],
      "js": [
        "extPayContentScript/extPayListenerRequirement.js"
      ],
      "run_at": "document_start"
    }
  ]
}