NCAA Basketball Stats Analyzer

Analyzes stats for mens NCAA Basketball teams on for bracket building at sports-reference.com. Icon from www.freepik.com

O que é NCAA Basketball Stats Analyzer?

NCAA Basketball Stats Analyzer é uma extensão do Chrome desenvolvida por Cory Forsyth, e sua principal característica é "Analyzes stats for mens NCAA Basketball teams on for bracket building at sports-reference.com. Icon from www.freepik.com".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão NCAA Basketball Stats Analyzer

Baixe arquivos de extensão NCAA Basketball Stats Analyzer 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

                        Must be on a schedule page at sports-reference.com. Example schedule page: http://www.sports-reference.com/cbb/schools/north-carolina/2016-schedule.html. Use this extension to analyze teams for your tournament basketball bracket.

If the URL does not have "-schedule.html" at the end, the extension will not work.                    

Informações Básicas da Extensão

Nome NCAA Basketball Stats Analyzer NCAA Basketball Stats Analyzer
ID gilmlkjkjcklebdfjddodjjloecpjoka
URL Oficial https://chromewebstore.google.com/detail/ncaa-basketball-stats-ana/gilmlkjkjcklebdfjddodjjloecpjoka
Descrição Analyzes stats for mens NCAA Basketball teams on for bracket building at sports-reference.com. Icon from www.freepik.com
Tamanho do Arquivo 84.57 KB
Contagem de Instalações 20
Versão Atual 0.2
Última Atualização 2016-03-18
Data de Publicação 2016-03-17
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Cory Forsyth
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "NCAA Basketball Stats Analyzer",
    "manifest_version": 2,
    "description": "Analyzes stats for mens NCAA Basketball teams on for bracket building at sports-reference.com. Icon from www.freepik.com",
    "version": "0.2",
    "icons": {
        "128": "ball.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.js",
                "content.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": "ball.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs"
    ]
}