YouTubeTutor

The best way to organize education by tutorials from YouTube.

什麼是YouTubeTutor?

YouTubeTutor是由Dima Lobanov開發的Chrome擴展程式,該擴展的主要功能是“The best way to organize education by tutorials from YouTube.”。

擴展截圖

screenshot
screenshot
screenshot

下載YouTubeTutor擴展crx文件

下載YouTubeTutor擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
        }
    ]
}