YouTube Subtitle Delay
Mini tool to delay the YouTube subtitles
YouTube Subtitle Delay là gì?
YouTube Subtitle Delay là một tiện ích mở rộng Chrome được phát triển bởi Behnam Azimi, và tính năng chính của nó là "Mini tool to delay the YouTube subtitles".
Ả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 Subtitle Delay
Tải xuống các tệp mở rộng YouTube Subtitle Delay 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
Mini tool to delay subtitles on the YouTube official website. As you may know, YouTube doesn't have this functionality by default, and sometimes being able to delay subtitle streaming can be of great help, especially when you're trying to learn a new language. And this extension would help you to do so. By default, you can change the delay time by "A" and "D" keyboard shortcuts. It's also possible to adjust your shortcuts. This extension is only allowed to execute on the Youtube official website and I hope they add the subtitle delay options soon and make this extension useless :)
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | fegfigommgpglnlpdmgncojmkghbijkc |
URL Chính Thức | https://chromewebstore.google.com/detail/youtube-subtitle-delay/fegfigommgpglnlpdmgncojmkghbijkc |
Mô tả | Mini tool to delay the YouTube subtitles |
Kích Thước Tệp | 38.87 KB |
Số Lần Cài Đặt | 1,051 |
Phiên Bản Hiện Tại | 1.7 |
Cập Nhật Lần Cuối | 2023-12-27 |
Ngày Phát Hành | 2022-06-28 |
Đánh Giá | 4.00/5 Tổng số 8 Đánh Giá |
Nhà Phát Triển | Behnam Azimi |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/behnamazimi/youtube-subtitle-delay |
URL Trang Trợ Giúp | https://github.com/behnamazimi/youtube-subtitle-delay/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Subtitle Delay", "version": "1.7", "description": "Mini tool to delay the YouTube subtitles", "permissions": [ "storage" ], "host_permissions": [ "https:\/\/youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup\/popup.html", "default_icon": { "16": "icons\/16x16.png", "32": "icons\/32x32.png", "48": "icons\/48x48.png", "128": "icons\/128x128.png" } }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "js": [ "shared\/constant.js", "shared\/utils.js", "content\/index.js" ], "css": [ "shared\/styles.css" ] } ], "icons": { "16": "icons\/16x16.png", "32": "icons\/32x32.png", "48": "icons\/48x48.png", "128": "icons\/128x128.png" }, "manifest_version": 3 } |