Examine source code of Volume Up Plus

Inspect and view changes in Volume Up Plus source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "__MSG_app_name__",
  "description": "__MSG_app_description__",
  "short_name": "__MSG_app_short_name__",
  "version": "1.0.0",
  "default_locale": "en",
  "author": "Volume Up Plus",
  "icons": {
    "32": "/img/logo/32.png",
    "64": "/img/logo/64.png",
    "128": "/img/logo/128.png",
    "256": "/img/logo/256.png",
    "512": "/img/logo/512.png"
  },
  "action": {
    "default_icon": {
      "16": "/img/icon/16.png",
      "24": "/img/icon/24.png",
      "32": "/img/icon/32.png",
      "64": "/img/icon/64.png",
      "128": "/img/icon/128.png",
      "256": "/img/icon/256.png",
      "512": "/img/icon/512.png"
    },
    "default_title": "__MSG_app_title__",
    "default_popup": "html/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content.js"
      ],
      "css": [
        "css/content.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "tabs",
    "tabCapture",
    "storage",
    "offscreen",
    "scripting",
    "webRequest"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/icon/*",
        "img/common/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}