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.

What is NBA Close Games?

NBA Close Games is a Chrome extension developed by marcnewport, and its main feature is "Highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off.".

Extension Screenshots

screenshot

Download NBA Close Games Extension CRX File

Download NBA Close Games 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

                        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.                    

Extension Basic Information

Name NBA Close Games NBA Close Games
ID fjjgljnmaijpilbcgbedemcnpffjkaaj
Official URL https://chrome.google.com/webstore/detail/nba-close-games/fjjgljnmaijpilbcgbedemcnpffjkaaj
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.
File Size 17.44 KB
Installation Count 150
Current Version 2.2.1
Last Updated 2018-10-20
Publish Date 2018-10-20
Rating 4.67/5 Total 3 Ratings
Developer marcnewport
Email [email protected]
Payment Type free
Extension Website http://marcnewport.com
Help Page URL https://github.com/marcnewport/nba-close-games/issues
Supported Languages 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\/*"
    ]
}