Time Viewer for YouTube Live
Chrome Extension for Viewing Time on YouTube Live.
Time Viewer for YouTube Liveคืออะไร?
Time Viewer for YouTube Live เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://fiahfy.blogspot.com และคุณลักษณะหลักของมันคือ "Chrome Extension for Viewing Time on YouTube Live."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Time Viewer for YouTube Live
ดาวน์โหลดไฟล์ส่วนขยาย Time Viewer for YouTube Live ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
- Display video publishing time. - Display time on seek bar and chat.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Time Viewer for YouTube Live |
ID | cnllmiliafeacdmlngaofjpjaljoolpc |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/time-viewer-for-youtube-l/cnllmiliafeacdmlngaofjpjaljoolpc |
คำอธิบาย | Chrome Extension for Viewing Time on YouTube Live. |
ขนาดไฟล์ | 25.52 KB |
จำนวนการติดตั้ง | 249 |
เวอร์ชันปัจจุบัน | 0.0.6 |
อัปเดตครั้งล่าสุด | 2023-01-01 |
วันที่เผยแพร่ | 2021-06-21 |
คะแนน | 4.67/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | https://fiahfy.blogspot.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "icons": { "128": "icon.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/www.youtube.com\/*" ], "all_frames": false, "js": [ "content-script.js" ], "css": [ "content-script.css" ] }, { "run_at": "document_start", "matches": [ "https:\/\/www.youtube.com\/live_chat_replay*" ], "all_frames": true, "js": [ "content-script-frame.js" ], "css": [ "content-script-frame.css" ] } ], "permissions": [ "storage" ], "host_permissions": [ "https:\/\/www.youtube.com\/*" ], "name": "Time Viewer for YouTube Live", "description": "Chrome Extension for Viewing Time on YouTube Live.", "version": "0.0.6" } |