Disable HTML5 Autoplay

Disable HTML5 Autoplay

Disable autoplay and preloading of HTML5 video and audio players.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "author": "totall",
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "browser_action": {
    "default_title": "Disable HTML5 Autoplay",
    "default_icon": {
      "16": "images/16x16_NO_PLAY_14.png"
    },
    "default_popup": "html/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/content_script.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "description": "Disable autoplay and preloading of HTML5 video and audio players.",
  "icons": {
    "16": "images/16x16_NO_PLAY_14.png",
    "48": "images/48x48_NO_PLAY_14.png",
    "128": "images/96x96_NO_PLAY_14.png"
  },
  "manifest_version": 2,
  "minimum_edge_version": "33.14281.1000.0",
  "name": "Disable HTML5 Autoplay",
  "options_page": "html/options.html",
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "webRequest",
    "webRequestBlocking",
    "https://*.com/*",
    "https://*.net/*",
    "https://*.ru/*",
    "https://*.by/*",
    "https://*.biz/*",
    "https://*.zone/*",
    "https://*.org/*"
  ],
  "version": "0.9.2",
  "web_accessible_resources": [
    "js/inject.js",
    "js/youtube.js"
  ],
  "-ms-preload": {
    "backgroundScript": "backgroundScriptsAPIBridge.js",
    "contentScript": "contentScriptsAPIBridge.js"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}