Cricket Live Fullscreen

Adds a fullscreen button to Cricket Australia streaming.

Cos'è Cricket Live Fullscreen?

Cricket Live Fullscreen è un'estensione di Chrome sviluppata da benthomasknight, e la sua funzione principale è "Adds a fullscreen button to Cricket Australia streaming.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Cricket Live Fullscreen

Scarica i file di estensione Cricket Live Fullscreen in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Cricket Australia does not provide a full screen button for its live streaming video player for many of its matches. This extension adds the button in.                    

Informazioni di Base sull'Estensione

Nome Cricket Live Fullscreen Cricket Live Fullscreen
ID flnfichomjklblpnldfdijabcjapmdfj
URL Ufficiale https://chrome.google.com/webstore/detail/cricket-live-fullscreen/flnfichomjklblpnldfdijabcjapmdfj
Descrizione Adds a fullscreen button to Cricket Australia streaming.
Dimensione del File 9.07 KB
Conteggio Installazioni 590
Versione Corrente 0.0.1
Ultimo Aggiornamento 2017-01-17
Data di Pubblicazione 2017-01-17
Valutazione 5.00/5 Totale 6 Valutazioni
Sviluppatore benthomasknight
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/benthomasknight/CricketAustraliaFullscreen
URL della Pagina di Aiuto https://github.com/benthomasknight/CricketAustraliaFullscreen
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Cricket Live Fullscreen",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Adds a fullscreen button to Cricket Australia streaming.",
    "icons": {
        "128": "images\/icon.png"
    },
    "default_locale": "en",
    "permissions": [
        "tabs"
    ],
    "page_action": {
        "default_icon": "images\/icon.png",
        "default_title": "Cricket Australia Fullscreen"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/live.cricket.com.au\/*"
            ],
            "js": [
                "scripts\/contentInjection.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "web_accessible_resources": [
        "scripts\/injection.js"
    ]
}