Auto Pause Video

Auto Pause Video

Automatically pauses html 5 videos after a page loads

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Auto Pause Video",
  "description": "Automatically pauses html 5 videos after a page loads",
  "version": "1.0",
  "content_scripts": [
    {
      "run_at": "document_idle",
      "all_frames": true,
      "js": [
        "content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}