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.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة YouTubeTutor

قم بتنزيل ملفات الامتداد YouTubeTutor بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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                    

معلومات أساسية عن التمديد

الاسم YouTubeTutor YouTubeTutor
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"
        }
    ]
}