YouTubeTutor
The best way to organize education by tutorials from YouTube.
Co je YouTubeTutor?
YouTubeTutor je rozšíření Chrome vyvinuté Dima Lobanov, a jeho hlavní funkcí je „The best way to organize education by tutorials from YouTube.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření YouTubeTutor
Stáhněte si soubory rozšíření YouTubeTutor ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
The best way to organize education by tutorials from YouTube. The extension extends the functionality of YouTube: * adds the opportunity for collecting playlists as courses; * tracking the progress of training; * recommend the list of quality-tested by a large number of users; * and more; Check out our site https://dimaspirit.github.io/YoutubeTutor/ for details. Follow: https://twitter.com/dnerdster Support: https://www.producthunt.com/posts/youtubetutor Contribute: https://github.com/dimaspirit/YoutubeTutor/tree/master
Základní Informace o Rozšíření
Název | |
ID | dckbkafeokippmcaobfhlkfmafhfhbla |
Oficiální URL | https://chrome.google.com/webstore/detail/youtubetutor/dckbkafeokippmcaobfhlkfmafhfhbla |
Popis | The best way to organize education by tutorials from YouTube. |
Velikost souboru | 57.45 KB |
Počet instalací | 164 |
Aktuální Verze | 5.0.1 |
Poslední Aktualizace | 2019-07-14 |
Datum Vydání | 2019-07-14 |
Hodnocení | 4.71/5 Celkem 7 Hodnocení |
Vývojář | Dima Lobanov |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://dimaspirit.github.io/YoutubeTutor/ |
Podporované Jazyky | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "5.0.1", "name": "YouTubeTutor", "description": "The best way to organize education by tutorials from YouTube.", "short_name": "YTT", "icons": { "16": ".\/icons\/logo16.png", "48": ".\/icons\/logo48.png", "128": ".\/icons\/logo128.png" }, "browser_action": { "default_title": "YouTubeTutor", "default_icon": ".\/icons\/logo48.png", "default_popup": "popup.html" }, "permissions": [ "tabs", "storage", "activeTab", "webNavigation", "unlimitedStorage", "*:\/\/*.youtube.com\/*" ], "background": { "scripts": [ ".\/js\/background.js" ], "persistent": true }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ ".\/js\/content.js" ], "css": [ ".\/content.css" ], "run_at": "document_start" } ] } |