Ctrl+Z for YouTube

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

Apa itu Ctrl+Z for YouTube?

Ctrl+Z for YouTube adalah ekstensi Chrome yang dikembangkan oleh Likbjorn's Software, dan fitur utamanya adalah "Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now!".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Ctrl+Z for YouTube

Unduh file ekstensi Ctrl+Z for YouTube dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Ctrl+Z for YouTube Ctrl+Z for YouTube
ID goodnjebkdapcafcdipcnlahdppddahg
URL Resmi https://chromewebstore.google.com/detail/ctrl+z-for-youtube/goodnjebkdapcafcdipcnlahdppddahg
Deskripsi Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now!
Ukuran File 13.65 KB
Jumlah Instalasi 65
Versi Saat Ini 1.0.3
Terakhir Diperbarui 2020-08-10
Tanggal Publikasi 2020-05-24
Penilaian 4.50/5 Total 4 Penilaian
Pengembang Likbjorn's Software
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    }
}