AudioAura

AudioAura

AudioAura is a simple extension that allows you to enhance the audio of any video on the web.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "AudioAura",
  "version": "1.0.0",
  "description": "AudioAura is a simple extension that allows you to enhance the audio of any video on the web.",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "action": {
    "default_popup": "popup/popup.html",
    "default_icons": {
      "16": "images/icon16.png",
      "24": "images/icon48.png",
      "32": "images/icon48.png"
    },
    "default_title": "AudioAura"
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*",
        "*://*.netflix.com/*"
      ],
      "js": [
        "content/content.js"
      ]
    }
  ]
}