YouTube Timed Comments
Show comments with timestamps
YouTube Timed Commentsคืออะไร?
YouTube Timed Comments เป็นส่วนขยายของ Chrome ที่พัฒนาโดย lerxst และคุณลักษณะหลักของมันคือ "Show comments with timestamps"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Timed Comments
ดาวน์โหลดไฟล์ส่วนขยาย YouTube Timed Comments ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
See comments that have timestamps, show up at the appropriate time. Note: Only comments that have loaded on the page will show up.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | mfmjnhncafdcdegeiamnjpnjgmmkkaal |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/youtube-timed-comments/mfmjnhncafdcdegeiamnjpnjgmmkkaal |
คำอธิบาย | Show comments with timestamps |
ขนาดไฟล์ | 96.02 KB |
จำนวนการติดตั้ง | 159 |
เวอร์ชันปัจจุบัน | 0.0.0.1 |
อัปเดตครั้งล่าสุด | 2019-09-03 |
วันที่เผยแพร่ | 2019-09-03 |
คะแนน | 3.33/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | lerxst |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Timed Comments", "description": "Show comments with timestamps", "version": "0.0.0.1", "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "third-party-scripts\/jquery-3.3.1.js", "third-party-scripts\/arrive.min.js", "third-party-scripts\/clamp.min.js", "content-script.js" ] } ], "permissions": [ "contextMenus", "webNavigation", "tabs" ], "background": { "scripts": [ "event-page.js" ], "persistent": false }, "web_accessible_resources": [ "third-party-scripts\/jquery-3.3.1.js", "third-party-scripts\/mustache.min.js", "third-party-scripts\/arrive.min.js", "third-party-scripts\/clamp.min.js", "page-script.js" ], "icons": { "16": "icons\/icon-16.png", "32": "icons\/icon-32.png", "192": "icons\/icon-192.png" } } |