Ctrl+Z for YouTube
Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now!
Wat is Ctrl+Z for YouTube?
Ctrl+Z for YouTube is een Chrome-extensie ontwikkeld door Likbjorn's Software, en de belangrijkste functie is "Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now!".
Extensie Screenshots
Download het CRX-bestand van de extensie Ctrl+Z for YouTube
Download Ctrl+Z for YouTube-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Ctrl+Z for YouTube |
ID | goodnjebkdapcafcdipcnlahdppddahg |
Officiële URL | https://chromewebstore.google.com/detail/ctrl+z-for-youtube/goodnjebkdapcafcdipcnlahdppddahg |
Beschrijving | Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now! |
Bestandsgrootte | 13.65 KB |
Aantal Installaties | 65 |
Huidige Versie | 1.0.3 |
Laatst Bijgewerkt | 2020-08-10 |
Publicatiedatum | 2020-05-24 |
Beoordeling | 4.50/5 Totaal 4 Beoordelingen |
Ontwikkelaar | Likbjorn's Software |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" } } |