Ctrl+Z for YouTube
Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now!
Qu'est-ce que Ctrl+Z for YouTube ?
Ctrl+Z for YouTube est une extension Chrome développée par Likbjorn's Software, et sa fonction principale est "Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now!".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Ctrl+Z for YouTube
Téléchargez les fichiers d'extension Ctrl+Z for YouTube au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Ctrl+Z for YouTube |
ID | goodnjebkdapcafcdipcnlahdppddahg |
URL Officiel | 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! |
Taille du Fichier | 13.65 KB |
Nombre d'Installations | 65 |
Version Actuelle | 1.0.3 |
Dernière Mise à Jour | 2020-08-10 |
Date de Publication | 2020-05-24 |
Évaluation | 4.50/5 Total 4 Évaluations |
Développeur | Likbjorn's Software |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |