egghead in HD
A simple extension to set maximum YouTube quality on EggHead.io videos
Qu'est-ce que egghead in HD ?
egghead in HD est une extension Chrome développée par Ben Bakhshi, et sa fonction principale est "A simple extension to set maximum YouTube quality on EggHead.io videos".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension egghead in HD
Téléchargez les fichiers d'extension egghead in HD au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | ikccellcabdnogopbagnkaknddieeaag |
URL Officiel | https://chrome.google.com/webstore/detail/egghead-in-hd/ikccellcabdnogopbagnkaknddieeaag |
Description | A simple extension to set maximum YouTube quality on EggHead.io videos |
Taille du Fichier | 125 KB |
Nombre d'Installations | 175 |
Version Actuelle | 0.1 |
Dernière Mise à Jour | 2013-11-01 |
Date de Publication | 2013-11-01 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Ben Bakhshi |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | http://www.egghead.io |
Langues Prises en Charge | 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" ] } |