YouTube Timestamper
Allows you to quickly copy current video/stream timestamp (with offset).
YouTube Timestamperคืออะไร?
YouTube Timestamper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย IAmVisco และคุณลักษณะหลักของมันคือ "Allows you to quickly copy current video/stream timestamp (with offset)."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Timestamper
ดาวน์โหลดไฟล์ส่วนขยาย YouTube Timestamper ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
A small utility tool that allows you to copy current video or stream timestamp. Icon by Iconpacks.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | YouTube Timestamper |
ID | fpjlholgdibolbjehinkkmbgodapojmp |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/youtube-timestamper/fpjlholgdibolbjehinkkmbgodapojmp |
คำอธิบาย | Allows you to quickly copy current video/stream timestamp (with offset). |
ขนาดไฟล์ | 16.88 KB |
จำนวนการติดตั้ง | 82 |
เวอร์ชันปัจจุบัน | 1.3.0 |
อัปเดตครั้งล่าสุด | 2023-06-21 |
วันที่เผยแพร่ | 2021-05-07 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | IAmVisco |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Timestamper", "version": "1.3.0", "description": "Allows you to quickly copy current video\/stream timestamp (with offset).", "manifest_version": 3, "permissions": [ "tabs", "storage" ], "background": { "service_worker": "background.js" }, "action": { "default_icon": { "16": "icons\/icon16.png", "32": "icons\/icon32.png" }, "default_title": "YouTube Timestamper" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/watch*", "https:\/\/www.youtube.com\/live\/*" ], "js": [ "inject-button.js", "utils.js" ], "css": [ "button.css" ] } ], "options_ui": { "page": "settings\/index.html" }, "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "128": "icons\/icon128.png" } } |