Ctrl+Z for YouTube
Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now!
Ctrl+Z for YouTube là gì?
Ctrl+Z for YouTube là một tiện ích mở rộng Chrome được phát triển bởi Likbjorn's Software, và tính năng chính của nó là "Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now!".
Ả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 Ctrl+Z for YouTube
Tải xuống các tệp mở rộng Ctrl+Z for YouTube 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
Ctrl+Z for YouTube extension allows you to rewind your video back after accidental rewind. Press Ctrl+Z to do so. You can specify other hotkey. The source code is available here: https://github.com/Likbjorn/ytcancel . Update 1.0.2 - Add redo feature. Update 1.0.3 - Fix buttons on control panel were not shown.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Ctrl+Z for YouTube |
ID | goodnjebkdapcafcdipcnlahdppddahg |
URL Chính Thức | https://chromewebstore.google.com/detail/ctrl+z-for-youtube/goodnjebkdapcafcdipcnlahdppddahg |
Mô tả | Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now! |
Kích Thước Tệp | 13.65 KB |
Số Lần Cài Đặt | 65 |
Phiên Bản Hiện Tại | 1.0.3 |
Cập Nhật Lần Cuối | 2020-08-10 |
Ngày Phát Hành | 2020-05-24 |
Đánh Giá | 4.50/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | Likbjorn's Software |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Ctrl+Z for YouTube", "version": "1.0.3", "description": "Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now!", "manifest_version": 2, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "contentscript.js" ], "all_frames": true, "run_at": "document_idle" } ], "permissions": [ "*:\/\/*.youtube.com\/*" ], "icons": { "128": "icon128.png" } } |