egghead in HD
A simple extension to set maximum YouTube quality on EggHead.io videos
Cos'è egghead in HD ?
egghead in HD è un'estensione di Chrome sviluppata da Ben Bakhshi, e la sua funzione principale è "A simple extension to set maximum YouTube quality on EggHead.io videos".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione egghead in HD
Scarica i file di estensione egghead in HD in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | ikccellcabdnogopbagnkaknddieeaag |
URL Ufficiale | https://chrome.google.com/webstore/detail/egghead-in-hd/ikccellcabdnogopbagnkaknddieeaag |
Descrizione | A simple extension to set maximum YouTube quality on EggHead.io videos |
Dimensione del File | 125 KB |
Conteggio Installazioni | 175 |
Versione Corrente | 0.1 |
Ultimo Aggiornamento | 2013-11-01 |
Data di Pubblicazione | 2013-11-01 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Ben Bakhshi |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://www.egghead.io |
Lingue Supportate | 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" ] } |