YouTubeTutor

The best way to organize education by tutorials from YouTube.

Cos'è YouTubeTutor?

YouTubeTutor è un'estensione di Chrome sviluppata da Dima Lobanov, e la sua funzione principale è "The best way to organize education by tutorials from YouTube.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione YouTubeTutor

Scarica i file di estensione YouTubeTutor in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome YouTubeTutor YouTubeTutor
ID dckbkafeokippmcaobfhlkfmafhfhbla
URL Ufficiale https://chrome.google.com/webstore/detail/youtubetutor/dckbkafeokippmcaobfhlkfmafhfhbla
Descrizione The best way to organize education by tutorials from YouTube.
Dimensione del File 57.45 KB
Conteggio Installazioni 164
Versione Corrente 5.0.1
Ultimo Aggiornamento 2019-07-14
Data di Pubblicazione 2019-07-14
Valutazione 4.71/5 Totale 7 Valutazioni
Sviluppatore Dima Lobanov
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://dimaspirit.github.io/YoutubeTutor/
Lingue Supportate 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"
        }
    ]
}