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.

What is Pause HBO?

Pause HBO is a Chrome extension developed by http://helloleia.com, and its main feature is "A Chrome Extension to make HBO a teeny bit nicer. Pause and play with spacebar, and without exiting full-screen. For US, Spain.".

Extension Screenshots

screenshot

Download Pause HBO Extension CRX File

Download Pause HBO extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Pause HBO Pause HBO
ID obkkopdjeglmehankcafionjnhdffjgd
Official URL 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.
File Size 119 KB
Installation Count 44
Current Version 1.0.0
Last Updated 2020-01-23
Publish Date 2020-01-19
Rating 4.00/5 Total 4 Ratings
Developer http://helloleia.com
Email [email protected]
Payment Type free
Privacy Policy Page URL https://helloleia.com/privacy
Supported Languages 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"
        ]
    }
}