ESPN Fantasy Basketball Lineup

Fill your lineup with active players

O que é ESPN Fantasy Basketball Lineup?

ESPN Fantasy Basketball Lineup é uma extensão do Chrome desenvolvida por minastirithprojects, e sua principal característica é "Fill your lineup with active players".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão ESPN Fantasy Basketball Lineup

Baixe arquivos de extensão ESPN Fantasy Basketball Lineup 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

                        This Chrome extension is used for ESPN Fantasy Basketball teams.
This extension is useful for teams that follow this ordered format:
PG, SG, SF, PF, C, G, F, any # of UTIL's.
This extension may not work as the user desires for days that have more active players than there are lineup spots or for general days.                    

Informações Básicas da Extensão

Nome ESPN Fantasy Basketball Lineup ESPN Fantasy Basketball Lineup
ID ipcaphmhnimmhdjniacnapehfdmikdpn
URL Oficial https://chromewebstore.google.com/detail/espn-fantasy-basketball-l/ipcaphmhnimmhdjniacnapehfdmikdpn
Descrição Fill your lineup with active players
Tamanho do Arquivo 30.26 KB
Contagem de Instalações 52
Versão Atual 1.1
Última Atualização 2021-01-10
Data de Publicação 2021-01-07
Desenvolvedor minastirithprojects
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ESPN Fantasy Basketball Lineup",
    "version": "1.1",
    "description": "Fill your lineup with active players",
    "permissions": [
        "activeTab",
        "declarativeContent"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": {
            "16": "images\/logo16.png",
            "32": "images\/logo32.png",
            "48": "images\/logo48.png",
            "128": "images\/logo128.png"
        },
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.fantasy.espn.com\/basketball\/team*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/logo16.png",
        "32": "images\/logo32.png",
        "48": "images\/logo48.png",
        "128": "images\/logo128.png"
    },
    "manifest_version": 2
}