egghead in HD

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

egghead in HD là gì?

egghead in HD là một tiện ích mở rộng Chrome được phát triển bởi Ben Bakhshi, và tính năng chính của nó là "A simple extension to set maximum YouTube quality on EggHead.io videos".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng egghead in HD

Tải xuống các tệp mở rộng egghead in HD dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên egghead in HD egghead in HD
ID ikccellcabdnogopbagnkaknddieeaag
URL Chính Thức https://chrome.google.com/webstore/detail/egghead-in-hd/ikccellcabdnogopbagnkaknddieeaag
Mô tả A simple extension to set maximum YouTube quality on EggHead.io videos
Kích Thước Tệp 125 KB
Số Lần Cài Đặt 175
Phiên Bản Hiện Tại 0.1
Cập Nhật Lần Cuối 2013-11-01
Ngày Phát Hành 2013-11-01
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Ben Bakhshi
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://www.egghead.io
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}