Disable AutoPlay - Click to play

Disable AutoPlay - Click to play

This simple plugin prevents videos from automatic start. Plugin adds a red frame on the video, to start the video just click on the frame. It's kind of a "Click to Play".

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Disable Autoplay",
  "version": "1.3resigned1",
  "description": "Disable Autoplay - Click to play",
  "icons": {
    "24": "icons/border-24.png",
    "48": "icons/border-48.png",
    "96": "icons/border-96.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "all_frames": true,
      "js": [
        "VideoPlay.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "img/No.png"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{6674730a-e591-43c6-8680-d332ea121cc2}"
    }
  }
}