ESPN Fantasy Basketball Lineup

Fill your lineup with active players

Co to jest ESPN Fantasy Basketball Lineup?

ESPN Fantasy Basketball Lineup to rozszerzenie Chrome opracowane przez minastirithprojects, a jego główną funkcją jest „Fill your lineup with active players”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia ESPN Fantasy Basketball Lineup

Pobierz pliki rozszerzeń ESPN Fantasy Basketball Lineup w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa ESPN Fantasy Basketball Lineup ESPN Fantasy Basketball Lineup
ID ipcaphmhnimmhdjniacnapehfdmikdpn
Oficjalny URL https://chromewebstore.google.com/detail/espn-fantasy-basketball-l/ipcaphmhnimmhdjniacnapehfdmikdpn
Opis Fill your lineup with active players
Rozmiar pliku 30.26 KB
Liczba instalacji 52
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2021-01-10
Data Publikacji 2021-01-07
Deweloper minastirithprojects
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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
}