egghead in HD

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

Apa itu egghead in HD ?

egghead in HD adalah ekstensi Chrome yang dikembangkan oleh Ben Bakhshi, dan fitur utamanya adalah "A simple extension to set maximum YouTube quality on EggHead.io videos".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi egghead in HD

Unduh file ekstensi egghead in HD dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama egghead in HD egghead in HD
ID ikccellcabdnogopbagnkaknddieeaag
URL Resmi https://chrome.google.com/webstore/detail/egghead-in-hd/ikccellcabdnogopbagnkaknddieeaag
Deskripsi A simple extension to set maximum YouTube quality on EggHead.io videos
Ukuran File 125 KB
Jumlah Instalasi 175
Versi Saat Ini 0.1
Terakhir Diperbarui 2013-11-01
Tanggal Publikasi 2013-11-01
Penilaian 5.00/5 Total 1 Penilaian
Pengembang Ben Bakhshi
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi http://www.egghead.io
Bahasa yang Didukung 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"
    ]
}