egghead in HD

A simple extension to set maximum YouTube quality on EggHead.io videos

O que é egghead in HD ?

egghead in HD é uma extensão do Chrome desenvolvida por Ben Bakhshi, e sua principal característica é "A simple extension to set maximum YouTube quality on EggHead.io videos".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão egghead in HD

Baixe arquivos de extensão egghead in HD 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

                        Egghead.io is a great learning resource for AngularJS. However it was a bit tough to read the code for the YouTube videos. Every egghead tutorial is available in HD, but you need to manually adjust the YouTube settings for each video. I put together a script that will always load the YouTube videos in HD.

Just install this extension, and start watching videos at http://egghead.io to enjoy learning AngularJS in HD.                    

Informações Básicas da Extensão

Nome egghead in HD egghead in HD
ID ikccellcabdnogopbagnkaknddieeaag
URL Oficial https://chrome.google.com/webstore/detail/egghead-in-hd/ikccellcabdnogopbagnkaknddieeaag
Descrição A simple extension to set maximum YouTube quality on EggHead.io videos
Tamanho do Arquivo 125 KB
Contagem de Instalações 175
Versão Atual 0.1
Última Atualização 2013-11-01
Data de Publicação 2013-11-01
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Ben Bakhshi
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://www.egghead.io
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "egghead in HD ",
    "version": "0.1",
    "manifest_version": 2,
    "description": "A simple extension to set maximum YouTube quality on EggHead.io videos",
    "icons": {
        "16": "appicon16.png",
        "128": "appicon128.png"
    },
    "browser_action": {
        "default_title": "EggHead.io max YouTube quality"
    },
    "permissions": [
        "tabs"
    ],
    "content_security_policy": "script-src 'self' https:\/\/apis.google.com;  object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/egghead.io\/lessons\/*"
            ],
            "js": [
                "egghead-contentscript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "egghead-script.js",
        "jquery-1.10.2.js",
        "swfobject.js"
    ]
}