egghead in HD
A simple extension to set maximum YouTube quality on EggHead.io videos
Co je egghead in HD ?
egghead in HD je rozšíření Chrome vyvinuté Ben Bakhshi, a jeho hlavní funkcí je „A simple extension to set maximum YouTube quality on EggHead.io videos“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření egghead in HD
Stáhněte si soubory rozšíření egghead in HD ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | |
ID | ikccellcabdnogopbagnkaknddieeaag |
Oficiální URL | https://chrome.google.com/webstore/detail/egghead-in-hd/ikccellcabdnogopbagnkaknddieeaag |
Popis | A simple extension to set maximum YouTube quality on EggHead.io videos |
Velikost souboru | 125 KB |
Počet instalací | 175 |
Aktuální Verze | 0.1 |
Poslední Aktualizace | 2013-11-01 |
Datum Vydání | 2013-11-01 |
Hodnocení | 5.00/5 Celkem 1 Hodnocení |
Vývojář | Ben Bakhshi |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | http://www.egghead.io |
Podporované Jazyky | 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" ] } |