Ctrl+Z for YouTube
Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now!
Was ist Ctrl+Z for YouTube?
Ctrl+Z for YouTube ist eine Chrome-Erweiterung, die von Likbjorn's Software entwickelt wurde, und ihr Hauptmerkmal ist "Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now!".
Erweiterungsscreenshots
Ctrl+Z for YouTube-Erweiterungs-CRX-Datei herunterladen
Laden Sie Ctrl+Z for YouTube-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | goodnjebkdapcafcdipcnlahdppddahg |
| Offizielle URL | https://chromewebstore.google.com/detail/ctrl+z-for-youtube/goodnjebkdapcafcdipcnlahdppddahg |
| Beschreibung | Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now! |
| Dateigröße | 13.65 KB |
| Installationsanzahl | 65 |
| Aktuelle Version | 1.0.3 |
| Letztes Update | 2020-08-10 |
| Veröffentlichungsdatum | 2020-05-24 |
| Bewertung | 4.50/5 Insgesamt 4 Bewertungen |
| Entwickler | Likbjorn's Software |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
}
} | |