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.

O que é NBA Close Games?

NBA Close Games é uma extensão do Chrome desenvolvida por marcnewport, e sua principal característica é "Highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão NBA Close Games

Baixe arquivos de extensão NBA Close Games no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome NBA Close Games NBA Close Games
ID fjjgljnmaijpilbcgbedemcnpffjkaaj
URL Oficial https://chrome.google.com/webstore/detail/nba-close-games/fjjgljnmaijpilbcgbedemcnpffjkaaj
Descrição Highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off.
Tamanho do Arquivo 17.44 KB
Contagem de Instalações 150
Versão Atual 2.2.1
Última Atualização 2018-10-20
Data de Publicação 2018-10-20
Classificação 4.67/5 Total de 3 Avaliações
Desenvolvedor marcnewport
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://marcnewport.com
URL da Página de Ajuda https://github.com/marcnewport/nba-close-games/issues
Idiomas Suportados 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\/*"
    ]
}