Treehouse AutoPlay

Automatically play through all of the videos in a badge.

O que é Treehouse AutoPlay?

Treehouse AutoPlay é uma extensão do Chrome desenvolvida por Matt West, e sua principal característica é "Automatically play through all of the videos in a badge.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Treehouse AutoPlay

Baixe arquivos de extensão Treehouse AutoPlay no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Treehouse AutoPlay Treehouse AutoPlay
ID epcbdbkjnonaliagdjccjnoejpgdnjkm
URL Oficial https://chromewebstore.google.com/detail/treehouse-autoplay/epcbdbkjnonaliagdjccjnoejpgdnjkm
Descrição Automatically play through all of the videos in a badge.
Tamanho do Arquivo 63.97 KB
Contagem de Instalações 520
Versão Atual 2.1
Última Atualização 2018-03-23
Data de Publicação 2018-03-23
Classificação 3.67/5 Total de 9 Avaliações
Desenvolvedor Matt West
Tipo de Pagamento free
Idiomas Suportados 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"
        }
    ]
}