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.
Vad är Pause HBO?
Pause HBO är en Chrome-tillägg utvecklad av http://helloleia.com, och dess huvudfunktion är "A Chrome Extension to make HBO a teeny bit nicer. Pause and play with spacebar, and without exiting full-screen. For US, Spain.".
Tilläggsskärmbilder
Ladda ner Pause HBO-förlängningens CRX-fil
Ladda ner Pause HBO-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | |
ID | obkkopdjeglmehankcafionjnhdffjgd |
Officiell webbadress | https://chrome.google.com/webstore/detail/pause-hbo/obkkopdjeglmehankcafionjnhdffjgd |
Beskrivning | A Chrome Extension to make HBO a teeny bit nicer. Pause and play with spacebar, and without exiting full-screen. For US, Spain. |
Filstorlek | 119 KB |
Antal Installationer | 44 |
Aktuell Version | 1.0.0 |
Senast Uppdaterad | 2020-01-23 |
Publiceringsdatum | 2020-01-19 |
Betyg | 4.00/5 Totalt 4 Betyg |
Utvecklare | http://helloleia.com |
E-post | [email protected] |
Betalningssätt | free |
URL till Sekretesspolicy Sidan | https://helloleia.com/privacy |
Stödda Språk | 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" ] } } |