Ctrl+Z for YouTube

Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now!

Co je Ctrl+Z for YouTube?

Ctrl+Z for YouTube je rozšíření Chrome vyvinuté Likbjorn's Software, a jeho hlavní funkcí je „Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now!“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Ctrl+Z for YouTube

Stáhněte si soubory rozšíření Ctrl+Z for YouTube ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Ctrl+Z for YouTube Ctrl+Z for YouTube
ID goodnjebkdapcafcdipcnlahdppddahg
Oficiální URL https://chromewebstore.google.com/detail/ctrl+z-for-youtube/goodnjebkdapcafcdipcnlahdppddahg
Popis Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now!
Velikost souboru 13.65 KB
Počet instalací 65
Aktuální Verze 1.0.3
Poslední Aktualizace 2020-08-10
Datum Vydání 2020-05-24
Hodnocení 4.50/5 Celkem 4 Hodnocení
Vývojář Likbjorn's Software
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
    }
}