Persistent Video/Audio Volume

Persistent Video/Audio Volume

This extension enables you to set the video/audio volume for each website separately. - facebook.com - 9gag.com - bandcamp.com - ... and many more

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Persistent Video/Audio Volume",
  "version": "0.10.1",
  "manifest_version": 2,
  "description": "Saves video and audio volume",
  "permissions": [
    "storage",
    "tabs",
    "<all_urls>"
  ],
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [],
      "js": [
        "contentscript.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icon16.png",
      "32": "icon32.png"
    }
  }
}