Youtube Timestamp
Save youtube videos with exact timestamps for later.
Youtube Timestampคืออะไร?
Youtube Timestamp เป็นส่วนขยายของ Chrome ที่พัฒนาโดย kirill17910 และคุณลักษณะหลักของมันคือ "Save youtube videos with exact timestamps for later."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube Timestamp
ดาวน์โหลดไฟล์ส่วนขยาย Youtube Timestamp ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This is a small extension for saving YouTube videos with exact timestamp. You can find all your saved videos, by clicking on the extension. If you save a video that is already on your saved list, only the timestamp will update. You can right click on saved videos to delete them. This is an open source project, and all source code can be found on GitHub. https://github.com/kotikkir9/Youtube Changes: 27/12/2022 - Added new animated delete button.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Youtube Timestamp |
ID | ciognandfojfcelnokkgaapgmafciekl |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/youtube-timestamp/ciognandfojfcelnokkgaapgmafciekl |
คำอธิบาย | Save youtube videos with exact timestamps for later. |
ขนาดไฟล์ | 11.57 KB |
จำนวนการติดตั้ง | 179 |
เวอร์ชันปัจจุบัน | 1.1 |
อัปเดตครั้งล่าสุด | 2022-12-28 |
วันที่เผยแพร่ | 2022-05-24 |
คะแนน | 5.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | kirill17910 |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้าช่วยเหลือ | https://github.com/kotikkir9/Youtube |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Timestamp", "description": "Save youtube videos with exact timestamps for later.", "version": "1.1", "manifest_version": 3, "background": { "service_worker": ".\/src\/background.js" }, "action": { "default_popup": "popup.html", "default_icon": { "16": ".\/images\/icon.png", "32": ".\/images\/icon.png", "38": ".\/images\/icon.png", "128": ".\/images\/icon.png" } }, "icons": { "16": ".\/images\/icon.png", "32": ".\/images\/icon.png", "38": ".\/images\/icon.png", "128": ".\/images\/icon.png" }, "permissions": [ "storage", "scripting", "tabs" ], "host_permissions": [ "http:\/\/www.youtube.com\/*", "https:\/\/www.youtube.com\/*" ] } |