Pause HBO

A Chrome Extension to make HBO a teeny bit nicer. Pause and play with spacebar, and without exiting full-screen. For US, Spain.

Что такое Pause HBO?

Pause HBO - это расширение Chrome, разработанное http://helloleia.com, и его основная функция - "A Chrome Extension to make HBO a teeny bit nicer. Pause and play with spacebar, and without exiting full-screen. For US, Spain.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Pause HBO

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

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

                        This app is really simple. It enables the pause and play toggle with the spacebar in the HBO app!

HBO makes awesome shows. But the HBO web app has a tiny, yet frustrating detail that drives me nuts. You cannot pause 
 or play with the spacebar. To make matters worse, hitting the spacebar exits full-screen mode. So, when you intuitively hit the spacebar to pause your show, you have to then click to pause and re-enter full-screen and it's a nightmare.                    

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

Название Pause HBO Pause HBO
ID obkkopdjeglmehankcafionjnhdffjgd
Официальный URL https://chrome.google.com/webstore/detail/pause-hbo/obkkopdjeglmehankcafionjnhdffjgd
Описание A Chrome Extension to make HBO a teeny bit nicer. Pause and play with spacebar, and without exiting full-screen. For US, Spain.
Размер файла 119 KB
Количество установок 44
Текущая Версия 1.0.0
Последнее Обновление 2020-01-23
Дата публикации 2020-01-19
Рейтинг 4.00/5 Всего 4 оценок
Разработчик http://helloleia.com
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://helloleia.com/privacy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Pause HBO",
    "description": "A Chrome Extension to make HBO a teeny bit nicer. Pause and play with spacebar, and without exiting full-screen. For US, Spain.",
    "version": "1.0.0",
    "manifest_version": 2,
    "icons": {
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "page_action": {
        "default_icon": {
            "48": "icons\/icon_48.png",
            "128": "icons\/icon_128.png"
        },
        "default_title": "HBO Tweak"
    },
    "permissions": [
        "*:\/\/es.hboespana.com\/*",
        "*:\/\/*.hbo.com\/*",
        "*:\/\/*.hbogo.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/es.hboespana.com\/*",
                "*:\/\/*.hbo.com\/*",
                "*:\/\/*.hbogo.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}