YouTube - Pause with Space Properly

Allows you to pause/play YouTube videos with the spacebar, even if the player doesn't have focus and without the annoying scrolling.

Что такое YouTube - Pause with Space Properly?

YouTube - Pause with Space Properly - это расширение Chrome, разработанное James Forsyth, и его основная функция - "Allows you to pause/play YouTube videos with the spacebar, even if the player doesn't have focus and without the annoying scrolling.".

Скачать файл CRX расширения YouTube - Pause with Space Properly

Скачайте файлы расширений YouTube - Pause with Space Properly в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        Fixes the common issue with pressing space to pause YouTube  videos. This extension refocuses the video when pressing space (unless you're trying to type), preventing the default behaviour that shoots halfway down the webpage.

Simple fix for a simple problem. Don't know why YouTube won't fix things themselves.                    

Основная информация о расширении

Название YouTube - Pause with Space Properly YouTube - Pause with Space Properly
ID cdidekkahbpdfkaegopcnpkobibblmof
Официальный URL https://chrome.google.com/webstore/detail/youtube-pause-with-space/cdidekkahbpdfkaegopcnpkobibblmof
Описание Allows you to pause/play YouTube videos with the spacebar, even if the player doesn't have focus and without the annoying scrolling.
Размер файла 19.83 KB
Количество установок 151
Текущая Версия 1.0.0
Последнее Обновление 2017-12-13
Дата публикации 2017-12-13
Рейтинг 3.80/5 Всего 10 оценок
Разработчик James Forsyth
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube - Pause with Space Properly",
    "description": "Allows you to pause\/play YouTube videos with the spacebar, even if the player doesn't have focus and without the annoying scrolling.",
    "version": "1.0.0",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "space.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "128": "space-128.png",
        "38": "space-38.png",
        "19": "space-19.png"
    }
}