YouTube Timestamps
Shows YouTube timestamps from comments.
YouTube Timestamps là gì?
YouTube Timestamps là một tiện ích mở rộng Chrome được phát triển bởi ris58h, và tính năng chính của nó là "Shows YouTube timestamps from comments.".
Ả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 Timestamps
Tải xuống các tệp mở rộng YouTube Timestamps 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
It adds timestamps right on YouTube video timeline. Hover over them to preview corresponding comments. The extension shows timestamps that YouTube users leave in comments. It shows timestamps from the top 100 comments. If YouTube video doesn't have comments with timestamps or the timestamps are not in the top 100 comments the extension doesn't show anything. Timestamps are placed right on YouTube's video timeline. Hover a timestamp on the timeline to preview the corresponding comment. Key features: - Shows timestamps from YouTube comments on timeline. - Works in Fullscreen and Theater modes. - Works for embedded videos. - Dark theme support. - Open Source https://github.com/ris58h/youtube-timestamps NOTE: To scroll a long comment preview scroll on the timestamp you are hovering over. LIMITATIONS: Only timestamps from the first 100 comments are shown.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | YouTube Timestamps |
ID | fjchmkcdmgeimkholkgodkejnikeklmh |
URL Chính Thức | https://chromewebstore.google.com/detail/youtube-timestamps/fjchmkcdmgeimkholkgodkejnikeklmh |
Mô tả | Shows YouTube timestamps from comments. |
Kích Thước Tệp | 14.33 KB |
Số Lần Cài Đặt | 2,794 |
Phiên Bản Hiện Tại | 0.9.0 |
Cập Nhật Lần Cuối | 2023-10-02 |
Ngày Phát Hành | 2020-02-24 |
Đánh Giá | 3.93/5 Tổng số 29 Đánh Giá |
Nhà Phát Triển | ris58h |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://ris58h.github.io/youtube-timestamps/ |
URL Trang Trợ Giúp | https://github.com/ris58h/youtube-timestamps |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Timestamps", "description": "Shows YouTube timestamps from comments.", "version": "0.9.0", "applications": { "gecko": { "id": "youtube-timestamps@ris58h" } }, "permissions": [ "https:\/\/www.youtube.com\/*", "webRequest", "webRequestBlocking" ], "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*", "https:\/\/www.youtube-nocookie.com\/embed\/*" ], "all_frames": true, "js": [ "content\/content.js" ], "css": [ "content\/content.css" ] } ], "web_accessible_resources": [ "background\/youtubei.js" ], "background": { "page": "background\/background.html" } } |