egghead in HD

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

Что такое egghead in HD ?

egghead in HD - это расширение Chrome, разработанное Ben Bakhshi, и его основная функция - "A simple extension to set maximum YouTube quality on EggHead.io videos".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения egghead in HD

Скачайте файлы расширений egghead in HD в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название egghead in HD egghead in HD
ID ikccellcabdnogopbagnkaknddieeaag
Официальный URL https://chrome.google.com/webstore/detail/egghead-in-hd/ikccellcabdnogopbagnkaknddieeaag
Описание A simple extension to set maximum YouTube quality on EggHead.io videos
Размер файла 125 KB
Количество установок 175
Текущая Версия 0.1
Последнее Обновление 2013-11-01
Дата публикации 2013-11-01
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Ben Bakhshi
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения http://www.egghead.io
Поддерживаемые языки 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"
    ]
}