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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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