Ctrl+Z for YouTube
Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now!
Cos'è Ctrl+Z for YouTube?
Ctrl+Z for YouTube è un'estensione di Chrome sviluppata da Likbjorn's Software, e la sua funzione principale è "Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Ctrl+Z for YouTube
Scarica i file di estensione Ctrl+Z for YouTube in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | goodnjebkdapcafcdipcnlahdppddahg |
| URL Ufficiale | https://chromewebstore.google.com/detail/ctrl+z-for-youtube/goodnjebkdapcafcdipcnlahdppddahg |
| Descrizione | Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now! |
| Dimensione del File | 13.65 KB |
| Conteggio Installazioni | 65 |
| Versione Corrente | 1.0.3 |
| Ultimo Aggiornamento | 2020-08-10 |
| Data di Pubblicazione | 2020-05-24 |
| Valutazione | 4.50/5 Totale 4 Valutazioni |
| Sviluppatore | Likbjorn's Software |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
}
} | |