YouTubeTutor

The best way to organize education by tutorials from YouTube.

YouTubeTutor là gì?

YouTubeTutor là một tiện ích mở rộng Chrome được phát triển bởi Dima Lobanov, và tính năng chính của nó là "The best way to organize education by tutorials from YouTube.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng YouTubeTutor

Tải xuống các tệp mở rộng YouTubeTutor dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên YouTubeTutor YouTubeTutor
ID dckbkafeokippmcaobfhlkfmafhfhbla
URL Chính Thức https://chrome.google.com/webstore/detail/youtubetutor/dckbkafeokippmcaobfhlkfmafhfhbla
Mô tả The best way to organize education by tutorials from YouTube.
Kích Thước Tệp 57.45 KB
Số Lần Cài Đặt 164
Phiên Bản Hiện Tại 5.0.1
Cập Nhật Lần Cuối 2019-07-14
Ngày Phát Hành 2019-07-14
Đánh Giá 4.71/5 Tổng số 7 Đánh Giá
Nhà Phát Triển Dima Lobanov
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://dimaspirit.github.io/YoutubeTutor/
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}