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.
Co to jest Pause HBO?
Pause HBO to rozszerzenie Chrome opracowane przez http://helloleia.com, a jego główną funkcją jest „A Chrome Extension to make HBO a teeny bit nicer. Pause and play with spacebar, and without exiting full-screen. For US, Spain.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Pause HBO
Pobierz pliki rozszerzeń Pause HBO w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | obkkopdjeglmehankcafionjnhdffjgd |
Oficjalny URL | https://chrome.google.com/webstore/detail/pause-hbo/obkkopdjeglmehankcafionjnhdffjgd |
Opis | A Chrome Extension to make HBO a teeny bit nicer. Pause and play with spacebar, and without exiting full-screen. For US, Spain. |
Rozmiar pliku | 119 KB |
Liczba instalacji | 44 |
Aktualna Wersja | 1.0.0 |
Ostatnia Aktualizacja | 2020-01-23 |
Data Publikacji | 2020-01-19 |
Ocena | 4.00/5 Łącznie 4 Oceny |
Deweloper | http://helloleia.com |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Polityki Prywatności | https://helloleia.com/privacy |
Obsługiwane Języki | 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" ] } } |