Tempus
A tool that allows you to manage and view YouTube comments with timestamps efficiently.
Tempusคืออะไร?
Tempus เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sarthak Mangla และคุณลักษณะหลักของมันคือ "A tool that allows you to manage and view YouTube comments with timestamps efficiently."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tempus
ดาวน์โหลดไฟล์ส่วนขยาย Tempus ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Features: 1. View the concentration of comments using opacity of displayed markers. 2. View comments containing a particular timestamp. 3. While playing the video, view comments with timestamps like a live chat replay. 4. Customize the primary colour, block size of the markers. To use Tempus, just make sure the extension has been installed and enabled in your browser. Then, you can head to any YouTube video, where the extension will collect timestamps from the comments and display them under the video progress bar. The settings, which are accessible through the Tempus icon on the top-right of your browser, allow you to: 1. Configure the block size of the marker (value can range between 1 and 20 seconds, default: 1) 2. Toggle HeatMap markers (default: enabled) 3. Toggle the comment live replay (default: disabled) 4. Toggle the marker on-click commment view (default: enabled) 5. Configure the primary colour for markers (default: #ffb347) Check out the source code here: https://github.com/knightron0/tempus Enjoy!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Tempus |
ID | bpdhbpeecmmglmkjfmigehaebpndmceh |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/tempus/bpdhbpeecmmglmkjfmigehaebpndmceh |
คำอธิบาย | A tool that allows you to manage and view YouTube comments with timestamps efficiently. |
ขนาดไฟล์ | 731 KB |
จำนวนการติดตั้ง | 186 |
เวอร์ชันปัจจุบัน | 1.0.5 |
อัปเดตครั้งล่าสุด | 2023-05-22 |
วันที่เผยแพร่ | 2021-08-17 |
คะแนน | 4.66/5 รวมทั้งหมด 29 คะแนน |
ผู้พัฒนา | Sarthak Mangla |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/knightron0/tempus |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tempus", "version": "1.0.5", "description": "A tool that allows you to manage and view YouTube comments with timestamps efficiently.", "manifest_version": 3, "action": { "default_popup": "popup.html", "default_title": "Tempus", "default_icon": "icon.png" }, "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "background": { "service_worker": ".\/background.js" }, "permissions": [ "storage", "tabs" ], "host_permissions": [ "https:\/\/www.youtube.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/watch?*" ], "js": [ "content-script.js" ] } ], "web_accessible_resources": [ { "resources": [ "\/assets\/placeholder.png" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ] } |