Cricket Live Fullscreen

Adds a fullscreen button to Cricket Australia streaming.

What is Cricket Live Fullscreen?

Cricket Live Fullscreen is a Chrome extension developed by benthomasknight, and its main feature is "Adds a fullscreen button to Cricket Australia streaming.".

Extension Screenshots

screenshot

Download Cricket Live Fullscreen Extension CRX File

Download Cricket Live Fullscreen 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

                        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.                    

Extension Basic Information

Name Cricket Live Fullscreen Cricket Live Fullscreen
ID flnfichomjklblpnldfdijabcjapmdfj
Official URL https://chrome.google.com/webstore/detail/cricket-live-fullscreen/flnfichomjklblpnldfdijabcjapmdfj
Description Adds a fullscreen button to Cricket Australia streaming.
File Size 9.07 KB
Installation Count 590
Current Version 0.0.1
Last Updated 2017-01-17
Publish Date 2017-01-17
Rating 5.00/5 Total 6 Ratings
Developer benthomasknight
Email [email protected]
Payment Type free
Extension Website https://github.com/benthomasknight/CricketAustraliaFullscreen
Help Page URL https://github.com/benthomasknight/CricketAustraliaFullscreen
Supported Languages 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"
    ]
}