no autoplay yahoo

no autoplay yahoo

Video on yahoo news will be autoplayed, this extension try to stop autoplay

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDescription__",
  "version": "0.1.3",
  "short_name": "__MSG_appShortName__",
  "manifest_version": 2,
  "default_locale": "zh_TW",
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png"
  },
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://tw.news.yahoo.com/*",
        "https://tw.yahoo.com/*"
      ],
      "css": [
        "styles/contentscript.css"
      ],
      "js": [
        "scripts/contentscript.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "permissions": [
    "https://tw.news.yahoo.com/*",
    "https://tw.yahoo.com/*"
  ]
}