Video Autoplay Blocker by Robert Sulkowski

Video Autoplay Blocker by Robert Sulkowski

Prevents from autoplay the HTML5 <video> tag.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Video Autoplay Blocker by Robert Sulkowski",
  "short_name": "Video Autoplay Blocker",
  "version": "1.0",
  "description": "Prevents from autoplay the HTML5 <video> tag.",
  "author": "Robert Sulkowski",
  "homepage_url": "http://brainusers.net/",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "blocker.js"
      ],
      "all_frames": true
    }
  ]
}