Examine source code of Volume Mixxer

Inspect and view changes in Volume Mixxer 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": 2,
  "name": "Volume Mixxer",
  "version": "1.5.0",
  "description": "Boost Volume up to 400%. No Elevated Permissions required. Source on Github.",
  "homepage_url": "https://github.com/rohit-kuinkel1/volume-mixxer",
  "icons": {
    "96": "images/internal_images/icon.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "images/internal_images/icon.png",
    "default_title": "Volume Mixxer",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "lib/arrive.min.js",
        "cs.js"
      ],
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "commands": {
    "_execute_browser_action": {
      "description": "Opens Volume Mixxer"
    }
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "rohit.kuinkel@protonmail.com"
    }
  }
}