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.
Qu'est-ce que Pause HBO ?
Pause HBO est une extension Chrome développée par http://helloleia.com, et sa fonction principale est "A Chrome Extension to make HBO a teeny bit nicer. Pause and play with spacebar, and without exiting full-screen. For US, Spain.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Pause HBO
Téléchargez les fichiers d'extension Pause HBO au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | obkkopdjeglmehankcafionjnhdffjgd |
URL Officiel | https://chrome.google.com/webstore/detail/pause-hbo/obkkopdjeglmehankcafionjnhdffjgd |
Description | A Chrome Extension to make HBO a teeny bit nicer. Pause and play with spacebar, and without exiting full-screen. For US, Spain. |
Taille du Fichier | 119 KB |
Nombre d'Installations | 44 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2020-01-23 |
Date de Publication | 2020-01-19 |
Évaluation | 4.00/5 Total 4 Évaluations |
Développeur | http://helloleia.com |
[email protected] | |
Type de Paiement | free |
URL de la Page de Politique de Confidentialité | https://helloleia.com/privacy |
Langues Prises en Charge | 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" ] } } |