Youtube Timeline
Youtube comments on a timeline
Youtube Timelineคืออะไร?
Youtube Timeline เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Awesome Extensions และคุณลักษณะหลักของมันคือ "Youtube comments on a timeline"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube Timeline
ดาวน์โหลดไฟล์ส่วนขยาย Youtube Timeline ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This app will show you comments with timestamp right above the timeline. * Excellent performance * Fetching up to 1000 comments per video * Supports all player sizes and window resizing * Supports fullscreen * Popup menu with settings * Loading indicator * Turn on/off button in a player control-bar * Seek video to certain comment by clicking on avatar Does not gather any private/personal information Does not check browsing history Does not work in incognito mode Has access only to youtube.com domain. Safe. Stable. Open sourced.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Youtube Timeline |
ID | jjhifobmdjhlphmilfmemefedpkmhdnb |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/youtube-timeline/jjhifobmdjhlphmilfmemefedpkmhdnb |
คำอธิบาย | Youtube comments on a timeline |
ขนาดไฟล์ | 156 KB |
จำนวนการติดตั้ง | 72 |
เวอร์ชันปัจจุบัน | 1.0.4 |
อัปเดตครั้งล่าสุด | 2023-01-09 |
วันที่เผยแพร่ | 2022-01-25 |
คะแนน | 3.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | Awesome Extensions |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Youtube Timeline", "version": "1.0.4", "action": { "default_icon": { "16": "assets\/icons\/16.png", "32": "assets\/icons\/32.png", "48": "assets\/icons\/48.png", "128": "assets\/icons\/128.png" }, "default_popup": "popup\/index.html", "default_title": "Youtube Timeline" }, "description": "Youtube comments on a timeline", "icons": { "16": "assets\/icons\/16.png", "32": "assets\/icons\/32.png", "48": "assets\/icons\/48.png", "128": "assets\/icons\/128.png" }, "author": "Ilya Zaytsev", "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [ { "js": [ "content\/content-script.js" ], "matches": [ "https:\/\/*.youtube.com\/*" ] } ], "incognito": "not_allowed", "offline_enabled": false, "host_permissions": [ "https:\/\/youtube.com\/" ], "permissions": [ "storage", "tabs" ], "short_name": "YT Timeline" } |