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
官方網址 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\/*"
    ]
}