egghead in HD
A simple extension to set maximum YouTube quality on EggHead.io videos
什麼是egghead in HD ?
egghead in HD 是由Ben Bakhshi開發的Chrome擴展程式,該擴展的主要功能是“A simple extension to set maximum YouTube quality on EggHead.io videos”。
擴展截圖
下載egghead in HD 擴展crx文件
下載egghead in HD 擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | |
ID | ikccellcabdnogopbagnkaknddieeaag |
官方網址 | https://chrome.google.com/webstore/detail/egghead-in-hd/ikccellcabdnogopbagnkaknddieeaag |
簡介 | A simple extension to set maximum YouTube quality on EggHead.io videos |
檔案大小 | 125 KB |
安裝次數 | 175 |
目前版本 | 0.1 |
更新時間 | 2013-11-01 |
上架時間 | 2013-11-01 |
評分 | 5.00/5 共 1 次評分 |
開發者 | Ben Bakhshi |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | http://www.egghead.io |
支援的語言 | 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" ] } |