Ctrl+Z for YouTube
Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now!
Vad är Ctrl+Z for YouTube?
Ctrl+Z for YouTube är en Chrome-tillägg utvecklad av Likbjorn's Software, och dess huvudfunktion är "Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now!".
Tilläggsskärmbilder
Ladda ner Ctrl+Z for YouTube-förlängningens CRX-fil
Ladda ner Ctrl+Z for YouTube-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Ctrl+Z for YouTube |
ID | goodnjebkdapcafcdipcnlahdppddahg |
Officiell webbadress | https://chromewebstore.google.com/detail/ctrl+z-for-youtube/goodnjebkdapcafcdipcnlahdppddahg |
Beskrivning | Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now! |
Filstorlek | 13.65 KB |
Antal Installationer | 65 |
Aktuell Version | 1.0.3 |
Senast Uppdaterad | 2020-08-10 |
Publiceringsdatum | 2020-05-24 |
Betyg | 4.50/5 Totalt 4 Betyg |
Utvecklare | Likbjorn's Software |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } } |