Treehouse AutoPlay

Automatically play through all of the videos in a badge.

Co je Treehouse AutoPlay?

Treehouse AutoPlay je rozšíření Chrome vyvinuté Matt West, a jeho hlavní funkcí je „Automatically play through all of the videos in a badge.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Treehouse AutoPlay

Stáhněte si soubory rozšíření Treehouse AutoPlay ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Treehouse AutoPlay Treehouse AutoPlay
ID epcbdbkjnonaliagdjccjnoejpgdnjkm
Oficiální URL https://chromewebstore.google.com/detail/treehouse-autoplay/epcbdbkjnonaliagdjccjnoejpgdnjkm
Popis Automatically play through all of the videos in a badge.
Velikost souboru 63.97 KB
Počet instalací 520
Aktuální Verze 2.1
Poslední Aktualizace 2018-03-23
Datum Vydání 2018-03-23
Hodnocení 3.67/5 Celkem 9 Hodnocení
Vývojář Matt West
Typ Platby free
Podporované Jazyky 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"
        }
    ]
}