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 |
公式URL | 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 |
Eメール | [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" ] } |