egghead in HD

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

什么是egghead in HD ?

egghead in HD 是由Ben Bakhshi开发的Chrome扩展程序,该扩展的主要功能是“A simple extension to set maximum YouTube quality on EggHead.io videos”。

扩展截图

screenshot

下载egghead in HD 扩展crx文件

下载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"
    ]
}