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