HBO Enhanced
A light-weight extension that enhances the HBO Now and HBO Go streaming services to their full potentials.
Что такое HBO Enhanced?
HBO Enhanced - это расширение Chrome, разработанное nrobinson, и его основная функция - "A light-weight extension that enhances the HBO Now and HBO Go streaming services to their full potentials.".
Снимки экрана расширения
Скачать файл CRX расширения HBO Enhanced
Скачайте файлы расширений HBO Enhanced в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension adds shortcuts and fixes to HBO Now and HBO Go. Features: - Right arrow skips forward 10 seconds on streams (left arrow skips backward) - Up arrow turns volume on site up (down arrow turns volume down) Fixes: - Clicking space bar to pause no longer scrolls down the page With more updates coming! Disclaimer: HBO, HBO Now, and HBO Go are trademarks of Home Box Office, Inc. This application and its developer are in no way affiliated with Home Box Office, Inc.
Основная информация о расширении
Название | HBO Enhanced |
ID | kibhmcdemphikjllndhmdjfailnllbjo |
Официальный URL | https://chromewebstore.google.com/detail/hbo-enhanced/kibhmcdemphikjllndhmdjfailnllbjo |
Описание | A light-weight extension that enhances the HBO Now and HBO Go streaming services to their full potentials. |
Размер файла | 8.46 KB |
Количество установок | 2,421 |
Текущая Версия | 0.4 |
Последнее Обновление | 2020-05-05 |
Дата публикации | 2020-05-05 |
Рейтинг | 4.14/5 Всего 7 оценок |
Разработчик | nrobinson |
Тип оплаты | free |
URL страницы помощи | https://github.com/nrobinson12/hbo-now-enhanced |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "HBO Enhanced", "description": "A light-weight extension that enhances the HBO Now and HBO Go streaming services to their full potentials.", "version": "0.4", "icons": { "128": "icon.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/play.hbonow.com\/*", "https:\/\/play.hbogo.com\/*" ], "js": [ "content.js" ], "css": [ "style.css" ] } ], "permissions": [ "tabs" ] } |