YouTubeTutor
The best way to organize education by tutorials from YouTube.
Wat is YouTubeTutor?
YouTubeTutor is een Chrome-extensie ontwikkeld door Dima Lobanov, en de belangrijkste functie is "The best way to organize education by tutorials from YouTube.".
Extensie Screenshots
Download het CRX-bestand van de extensie YouTubeTutor
Download YouTubeTutor-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | |
ID | dckbkafeokippmcaobfhlkfmafhfhbla |
Officiële URL | https://chrome.google.com/webstore/detail/youtubetutor/dckbkafeokippmcaobfhlkfmafhfhbla |
Beschrijving | The best way to organize education by tutorials from YouTube. |
Bestandsgrootte | 57.45 KB |
Aantal Installaties | 164 |
Huidige Versie | 5.0.1 |
Laatst Bijgewerkt | 2019-07-14 |
Publicatiedatum | 2019-07-14 |
Beoordeling | 4.71/5 Totaal 7 Beoordelingen |
Ontwikkelaar | Dima Lobanov |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://dimaspirit.github.io/YoutubeTutor/ |
Ondersteunde Talen | 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" } ] } |