egghead in HD
A simple extension to set maximum YouTube quality on EggHead.io videos
egghead in HD क्या है?
egghead in HD Ben Bakhshi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple extension to set maximum YouTube quality on EggHead.io videos"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में egghead in HD एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
ईमेल | [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" ] } |