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.

Apa itu Pause HBO?

Pause HBO adalah ekstensi Chrome yang dikembangkan oleh http://helloleia.com, dan fitur utamanya adalah "A Chrome Extension to make HBO a teeny bit nicer. Pause and play with spacebar, and without exiting full-screen. For US, Spain.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Pause HBO

Unduh file ekstensi Pause HBO dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Pause HBO Pause HBO
ID obkkopdjeglmehankcafionjnhdffjgd
URL Resmi https://chrome.google.com/webstore/detail/pause-hbo/obkkopdjeglmehankcafionjnhdffjgd
Deskripsi A Chrome Extension to make HBO a teeny bit nicer. Pause and play with spacebar, and without exiting full-screen. For US, Spain.
Ukuran File 119 KB
Jumlah Instalasi 44
Versi Saat Ini 1.0.0
Terakhir Diperbarui 2020-01-23
Tanggal Publikasi 2020-01-19
Penilaian 4.00/5 Total 4 Penilaian
Pengembang http://helloleia.com
Email [email protected]
Tipe Pembayaran free
URL Halaman Kebijakan Privasi https://helloleia.com/privacy
Bahasa yang Didukung 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"
        ]
    }
}