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.”。
扩展截图
下载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
扩展基本信息
名称 | |
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" } ] } |