Autoplay Videos for Feedly

Autoplay Videos for Feedly

Automatically play videos and reveal video controls in Feedly. Convenient for feeds that post many embedded videos.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Autoplay Videos for Feedly",
  "description": "Automatically play videos and reveal video controls in Feedly. Convenient for feeds that post many embedded videos.",
  "version": "1.2",
  "author": "Justin Dela Cruz",
  "content_scripts": [
    {
      "matches": [
        "https://feedly.com/*",
        "https://www.feedly.com/*",
        "http://feedly.com/*",
        "http://www.feedly.com/*"
      ],
      "js": [
        "js/jquery-2.1.4.min.js",
        "js/videoHelper.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "128": "icon128.png"
  }
}