Ctrl+Z for YouTube
Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now!
Co to jest Ctrl+Z for YouTube?
Ctrl+Z for YouTube to rozszerzenie Chrome opracowane przez Likbjorn's Software, a jego główną funkcją jest „Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now!”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Ctrl+Z for YouTube
Pobierz pliki rozszerzeń Ctrl+Z for YouTube w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Ctrl+Z for YouTube |
ID | goodnjebkdapcafcdipcnlahdppddahg |
Oficjalny URL | https://chromewebstore.google.com/detail/ctrl+z-for-youtube/goodnjebkdapcafcdipcnlahdppddahg |
Opis | Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now! |
Rozmiar pliku | 13.65 KB |
Liczba instalacji | 65 |
Aktualna Wersja | 1.0.3 |
Ostatnia Aktualizacja | 2020-08-10 |
Data Publikacji | 2020-05-24 |
Ocena | 4.50/5 Łącznie 4 Oceny |
Deweloper | Likbjorn's Software |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" } } |