Treehouse AutoPlay

Automatically play through all of the videos in a badge.

什么是Treehouse AutoPlay?

Treehouse AutoPlay是由Matt West开发的Chrome扩展程序,该扩展的主要功能是“Automatically play through all of the videos in a badge.”。

扩展截图

screenshot

下载Treehouse AutoPlay扩展crx文件

下载Treehouse AutoPlay扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension will automatically play the next video in the badge playlist when the current video finishes. Great for people that want to sit back and enjoy the videos without having to  manually move on to the next video all of the time.

***** UPDATE v2 *****
Support for the updated Treehouse website.


You can get involved in the development here:
https://github.com/matt-west/treehouse-autoplay/


The 'treehouse' and 'mike the frog' logos are property of Treehouse Island, Inc.                    

扩展基本信息

名称 Treehouse AutoPlay Treehouse AutoPlay
ID epcbdbkjnonaliagdjccjnoejpgdnjkm
官方URL https://chromewebstore.google.com/detail/treehouse-autoplay/epcbdbkjnonaliagdjccjnoejpgdnjkm
简介 Automatically play through all of the videos in a badge.
文件大小 63.97 KB
安装次数 520
当前版本 2.1
更新时间 2018-03-23
上架时间 2018-03-23
评分 3.67/5 共9次评分
开发者 Matt West
付费类型 free
支持的语言 en
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"
        }
    ]
}