Cricket Live Fullscreen

Adds a fullscreen button to Cricket Australia streaming.

什么是Cricket Live Fullscreen?

Cricket Live Fullscreen是由benthomasknight开发的Chrome扩展程序,该扩展的主要功能是“Adds a fullscreen button to Cricket Australia streaming.”。

扩展截图

screenshot

下载Cricket Live Fullscreen扩展crx文件

下载Cricket Live Fullscreen扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Cricket Live Fullscreen Cricket Live Fullscreen
ID flnfichomjklblpnldfdijabcjapmdfj
官方URL https://chrome.google.com/webstore/detail/cricket-live-fullscreen/flnfichomjklblpnldfdijabcjapmdfj
简介 Adds a fullscreen button to Cricket Australia streaming.
文件大小 9.07 KB
安装次数 590
当前版本 0.0.1
更新时间 2017-01-17
上架时间 2017-01-17
评分 5.00/5 共6次评分
开发者 benthomasknight
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/benthomasknight/CricketAustraliaFullscreen
帮助页面URL https://github.com/benthomasknight/CricketAustraliaFullscreen
支持的语言 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"
    ]
}