egghead in HD
A simple extension to set maximum YouTube quality on EggHead.io videos
Was ist egghead in HD ?
egghead in HD ist eine Chrome-Erweiterung, die von Ben Bakhshi entwickelt wurde, und ihr Hauptmerkmal ist "A simple extension to set maximum YouTube quality on EggHead.io videos".
Erweiterungsscreenshots
egghead in HD -Erweiterungs-CRX-Datei herunterladen
Laden Sie egghead in HD -Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ikccellcabdnogopbagnkaknddieeaag |
| Offizielle URL | https://chrome.google.com/webstore/detail/egghead-in-hd/ikccellcabdnogopbagnkaknddieeaag |
| Beschreibung | A simple extension to set maximum YouTube quality on EggHead.io videos |
| Dateigröße | 125 KB |
| Installationsanzahl | 175 |
| Aktuelle Version | 0.1 |
| Letztes Update | 2013-11-01 |
| Veröffentlichungsdatum | 2013-11-01 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | Ben Bakhshi |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | http://www.egghead.io |
| Unterstützte Sprachen | 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"
]
} | |