YouTubeTutor

The best way to organize education by tutorials from YouTube.

Was ist YouTubeTutor?

YouTubeTutor ist eine Chrome-Erweiterung, die von Dima Lobanov entwickelt wurde, und ihr Hauptmerkmal ist "The best way to organize education by tutorials from YouTube.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

YouTubeTutor-Erweiterungs-CRX-Datei herunterladen

Laden Sie YouTubeTutor-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name YouTubeTutor YouTubeTutor
ID dckbkafeokippmcaobfhlkfmafhfhbla
Offizielle URL https://chrome.google.com/webstore/detail/youtubetutor/dckbkafeokippmcaobfhlkfmafhfhbla
Beschreibung The best way to organize education by tutorials from YouTube.
Dateigröße 57.45 KB
Installationsanzahl 164
Aktuelle Version 5.0.1
Letztes Update 2019-07-14
Veröffentlichungsdatum 2019-07-14
Bewertung 4.71/5 Insgesamt 7 Bewertungen
Entwickler Dima Lobanov
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://dimaspirit.github.io/YoutubeTutor/
Unterstützte Sprachen 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"
        }
    ]
}