YouTubeTutor

The best way to organize education by tutorials from YouTube.

¿Qué es YouTubeTutor?

YouTubeTutor es una extensión de Chrome desarrollada por Dima Lobanov, y su función principal es "The best way to organize education by tutorials from YouTube.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión YouTubeTutor

Descarga archivos de extensión YouTubeTutor en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre YouTubeTutor YouTubeTutor
ID dckbkafeokippmcaobfhlkfmafhfhbla
URL Oficial https://chrome.google.com/webstore/detail/youtubetutor/dckbkafeokippmcaobfhlkfmafhfhbla
Descripción The best way to organize education by tutorials from YouTube.
Tamaño del Archivo 57.45 KB
Cantidad de Instalaciones 164
Versión Actual 5.0.1
Última Actualización 2019-07-14
Fecha de Publicación 2019-07-14
Calificación 4.71/5 Total de 7 Calificaciones
Desarrollador Dima Lobanov
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://dimaspirit.github.io/YoutubeTutor/
Idiomas Soportados 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"
        }
    ]
}