Treehouse AutoPlay

Treehouse AutoPlay

Automatically play through all of the videos in a badge.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Treehouse AutoPlay",
  "version": "2.1",
  "description": "Automatically play through all of the videos in a badge.",
  "permissions": [
    "http://teamtreehouse.com/"
  ],
  "icons": {
    "128": "img/icon.png"
  },
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": "img/inactive.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://teamtreehouse.com/library/*"
      ],
      "js": [
        "js/jquery-1.7.min.js",
        "js/autoplay.js"
      ],
      "run_at": "document_start"
    }
  ]
}