YouTubeTutor
The best way to organize education by tutorials from YouTube.
YouTubeTutorคืออะไร?
YouTubeTutor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dima Lobanov และคุณลักษณะหลักของมันคือ "The best way to organize education by tutorials from YouTube."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTubeTutor
ดาวน์โหลดไฟล์ส่วนขยาย 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" } ] } |