YouTubeTutor
The best way to organize education by tutorials from YouTube.
Τι είναι το YouTubeTutor;
Το YouTubeTutor είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Dima Lobanov, και η κύρια λειτουργία του είναι "The best way to organize education by tutorials from YouTube.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης YouTubeTutor
Λήψη αρχείων επέκτασης YouTubeTutor σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | dckbkafeokippmcaobfhlkfmafhfhbla |
Επίσημο URL | https://chrome.google.com/webstore/detail/youtubetutor/dckbkafeokippmcaobfhlkfmafhfhbla |
Περιγραφή | The best way to organize education by tutorials from YouTube. |
Μέγεθος Αρχείου | 57.45 KB |
Αριθμός Εγκαταστάσεων | 164 |
Τρέχουσα Έκδοση | 5.0.1 |
Τελευταία Ενημέρωση | 2019-07-14 |
Ημερομηνία Δημοσίευσης | 2019-07-14 |
Αξιολόγηση | 4.71/5 Συνολικά 7 Αξιολογήσεις |
Προγραμματιστής | Dima Lobanov |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://dimaspirit.github.io/YoutubeTutor/ |
Υποστηριζόμενες Γλώσσες | 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" } ] } |