Treehouse AutoPlay

Automatically play through all of the videos in a badge.

Treehouse AutoPlay là gì?

Treehouse AutoPlay là một tiện ích mở rộng Chrome được phát triển bởi Matt West, và tính năng chính của nó là "Automatically play through all of the videos in a badge.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Treehouse AutoPlay

Tải xuống các tệp mở rộng Treehouse AutoPlay dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Treehouse AutoPlay Treehouse AutoPlay
ID epcbdbkjnonaliagdjccjnoejpgdnjkm
URL Chính Thức https://chromewebstore.google.com/detail/treehouse-autoplay/epcbdbkjnonaliagdjccjnoejpgdnjkm
Mô tả Automatically play through all of the videos in a badge.
Kích Thước Tệp 63.97 KB
Số Lần Cài Đặt 520
Phiên Bản Hiện Tại 2.1
Cập Nhật Lần Cuối 2018-03-23
Ngày Phát Hành 2018-03-23
Đánh Giá 3.67/5 Tổng số 9 Đánh Giá
Nhà Phát Triển Matt West
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}