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 |
Eメール | [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" } ] } |