YouTubeTutor

The best way to organize education by tutorials from YouTube.

Qu'est-ce que YouTubeTutor ?

YouTubeTutor est une extension Chrome développée par Dima Lobanov, et sa fonction principale est "The best way to organize education by tutorials from YouTube.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension YouTubeTutor

Téléchargez les fichiers d'extension YouTubeTutor au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom YouTubeTutor YouTubeTutor
ID dckbkafeokippmcaobfhlkfmafhfhbla
URL Officiel https://chrome.google.com/webstore/detail/youtubetutor/dckbkafeokippmcaobfhlkfmafhfhbla
Description The best way to organize education by tutorials from YouTube.
Taille du Fichier 57.45 KB
Nombre d'Installations 164
Version Actuelle 5.0.1
Dernière Mise à Jour 2019-07-14
Date de Publication 2019-07-14
Évaluation 4.71/5 Total 7 Évaluations
Développeur Dima Lobanov
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://dimaspirit.github.io/YoutubeTutor/
Langues Prises en Charge 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"
        }
    ]
}