YouTube Timestamp Bookmarker - Gravitate Webs
Saving timestamps in YouTube videos
YouTube Timestamp Bookmarker - Gravitate Websคืออะไร?
YouTube Timestamp Bookmarker - Gravitate Webs เป็นส่วนขยายของ Chrome ที่พัฒนาโดย gravitatewebs และคุณลักษณะหลักของมันคือ "Saving timestamps in YouTube videos"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Timestamp Bookmarker - Gravitate Webs
ดาวน์โหลดไฟล์ส่วนขยาย YouTube Timestamp Bookmarker - Gravitate Webs ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Timestamp bookmark a YouTube video at any point during the video by pressing the blue button. This extension will remember what time you saved the bookmark and you can jump to that point at any time you wish. Save as many timestamped bookmakers as you want. This is a great tool when you are presenting a video and when you are needing to jump around to certain points.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | YouTube Timestamp Bookmarker - Gravitate Webs |
ID | kbpcmedhleadonchilbecnmmcfeilmml |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/youtube-timestamp-bookmar/kbpcmedhleadonchilbecnmmcfeilmml |
คำอธิบาย | Saving timestamps in YouTube videos |
ขนาดไฟล์ | 138 KB |
จำนวนการติดตั้ง | 31 |
เวอร์ชันปัจจุบัน | 0.1.0.0 |
อัปเดตครั้งล่าสุด | 2022-06-08 |
วันที่เผยแพร่ | 2022-06-07 |
ผู้พัฒนา | gravitatewebs |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://gravitatewebs.com/ |
ภาษาที่รองรับ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Timestamp Bookmarker - Gravitate Webs", "version": "0.1.0.0", "description": "Saving timestamps in YouTube videos", "permissions": [ "storage", "tabs" ], "host_permissions": [ "https:\/\/*.youtube.com\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "contentScript.js" ] } ], "web_accessible_resources": [ { "resources": [ "assets\/bookmark.png", "assets\/play.png", "assets\/delete.png", "assets\/save.png" ], "matches": [ "https:\/\/*.youtube.com\/*" ] } ], "action": { "default_icon": { "16": "assets\/ext-icon.png", "24": "assets\/ext-icon.png", "32": "assets\/ext-icon.png" }, "default_title": "YouTube Timestamp Bookmarker - Gravitate Webs", "default_popup": "popup.html" }, "manifest_version": 3 } |