NBA Close Games

Highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off.

什么是NBA Close Games?

NBA Close Games是由marcnewport开发的Chrome扩展程序,该扩展的主要功能是“Highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off.”。

扩展截图

screenshot

下载NBA Close Games扩展crx文件

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

扩展使用说明

                        A chrome extension for http://watch.nba.com that highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off.                    

扩展基本信息

名称 NBA Close Games NBA Close Games
ID fjjgljnmaijpilbcgbedemcnpffjkaaj
官方URL https://chrome.google.com/webstore/detail/nba-close-games/fjjgljnmaijpilbcgbedemcnpffjkaaj
简介 Highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off.
文件大小 17.44 KB
安装次数 150
当前版本 2.2.1
更新时间 2018-10-20
上架时间 2018-10-20
评分 4.67/5 共3次评分
开发者 marcnewport
电子邮箱 [email protected]
付费类型 free
扩展官网 http://marcnewport.com
帮助页面URL https://github.com/marcnewport/nba-close-games/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NBA Close Games",
    "description": "Highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off.",
    "version": "2.2.1",
    "options_page": "options.html",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "icons": [
            "icons\/icon.png",
            "icons\/icon-disabled.png"
        ],
        "default_icon": "icons\/icon-disabled.png"
    },
    "background": {
        "scripts": [
            "js\/background.js",
            "js\/utils.js",
            "js\/options.js",
            "js\/manipulate.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/watch.nba.com\/*"
            ],
            "css": [
                "css\/manipulate.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "https:\/\/stats.nba.com\/*",
        "https:\/\/data.nba.net\/*",
        "https:\/\/wikihoops.com\/*"
    ]
}