egghead in HD

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

Wat is egghead in HD ?

egghead in HD is een Chrome-extensie ontwikkeld door Ben Bakhshi, en de belangrijkste functie is "A simple extension to set maximum YouTube quality on EggHead.io videos".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie egghead in HD

Download egghead in HD -extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam egghead in HD egghead in HD
ID ikccellcabdnogopbagnkaknddieeaag
Officiële URL https://chrome.google.com/webstore/detail/egghead-in-hd/ikccellcabdnogopbagnkaknddieeaag
Beschrijving A simple extension to set maximum YouTube quality on EggHead.io videos
Bestandsgrootte 125 KB
Aantal Installaties 175
Huidige Versie 0.1
Laatst Bijgewerkt 2013-11-01
Publicatiedatum 2013-11-01
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Ben Bakhshi
E-mail [email protected]
Betalingswijze free
Extensiewebsite http://www.egghead.io
Ondersteunde Talen 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"
    ]
}