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 с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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"
    }
}