Youtube Timestamp
Save youtube videos with exact timestamps for later.
Youtube Timestamp là gì?
Youtube Timestamp là một tiện ích mở rộng Chrome được phát triển bởi kirill17910, và tính năng chính của nó là "Save youtube videos with exact timestamps for later.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Youtube Timestamp
Tải xuống các tệp mở rộng Youtube Timestamp dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Youtube Timestamp |
ID | ciognandfojfcelnokkgaapgmafciekl |
URL Chính Thức | https://chromewebstore.google.com/detail/youtube-timestamp/ciognandfojfcelnokkgaapgmafciekl |
Mô tả | Save youtube videos with exact timestamps for later. |
Kích Thước Tệp | 11.57 KB |
Số Lần Cài Đặt | 179 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2022-12-28 |
Ngày Phát Hành | 2022-05-24 |
Đánh Giá | 5.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | kirill17910 |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://github.com/kotikkir9/Youtube |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } |