Ctrl+Z for YouTube
Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now!
What is Ctrl+Z for YouTube?
Ctrl+Z for YouTube is a Chrome extension developed by Likbjorn's Software, and its main feature is "Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now!".
Extension Screenshots
Download Ctrl+Z for YouTube Extension CRX File
Download Ctrl+Z for YouTube extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Ctrl+Z for YouTube |
ID | goodnjebkdapcafcdipcnlahdppddahg |
Official URL | https://chromewebstore.google.com/detail/ctrl+z-for-youtube/goodnjebkdapcafcdipcnlahdppddahg |
Description | Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now! |
File Size | 13.65 KB |
Installation Count | 65 |
Current Version | 1.0.3 |
Last Updated | 2020-08-10 |
Publish Date | 2020-05-24 |
Rating | 4.50/5 Total 4 Ratings |
Developer | Likbjorn's Software |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } |