YouTubeTutor

The best way to organize education by tutorials from YouTube.

YouTubeTutor क्या है?

YouTubeTutor Dima Lobanov द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "The best way to organize education by tutorials from YouTube."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में YouTubeTutor एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
        }
    ]
}