Ctrl+Z for YouTube

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

ما هو Ctrl+Z for YouTube؟

Ctrl+Z for YouTube هو إضافة Chrome تم تطويرها بواسطة Likbjorn's Software، والميزة الرئيسية لها هي "Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now!".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Ctrl+Z for YouTube

قم بتنزيل ملفات الامتداد Ctrl+Z for YouTube بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم Ctrl+Z for YouTube Ctrl+Z for YouTube
ID goodnjebkdapcafcdipcnlahdppddahg
عنوان URL الرسمي https://chromewebstore.google.com/detail/ctrl+z-for-youtube/goodnjebkdapcafcdipcnlahdppddahg
الوصف Ever misclicked number keys while watching video and rewinded your movie? You can cancel it now!
حجم الملف 13.65 KB
عدد التثبيتات 65
النسخة الحالية 1.0.3
آخر تحديث 2020-08-10
تاريخ النشر 2020-05-24
تقييم 4.50/5 مجموع تقييمات 4
المطور Likbjorn's Software
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة 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"
    }
}