LineupExperts

Get expert advice for your fantasy teams.

Co to jest LineupExperts?

LineupExperts to rozszerzenie Chrome opracowane przez LineupExperts.com, a jego główną funkcją jest „Get expert advice for your fantasy teams.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia LineupExperts

Pobierz pliki rozszerzeń LineupExperts 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

                        Our browser extension makes it easier to integrate with your preferred fantasy platforms like ESPN and Yahoo.  It can also give you the edge during the draft. It tracks the draft while communicating picks so that our platform can offer you real-time insights on the draft including our recommended draft picks round-by-round.                    

Podstawowe informacje o rozszerzeniu

Nazwa LineupExperts LineupExperts
ID gcniklopcjcohhkeldmfbjocjmngakne
Oficjalny URL https://chromewebstore.google.com/detail/lineupexperts/gcniklopcjcohhkeldmfbjocjmngakne
Opis Get expert advice for your fantasy teams.
Rozmiar pliku 229 KB
Liczba instalacji 3,837
Aktualna Wersja 3
Ostatnia Aktualizacja 2023-09-01
Data Publikacji 2023-05-24
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper LineupExperts.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.lineupexperts.com/
Adres URL Strony Pomocy https://www.lineupexperts.com/Contact-Us
Adres URL Strony Polityki Prywatności https://www.lineupexperts.com/privacy.php
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LineupExperts",
    "description": "Get expert advice for your fantasy teams.",
    "manifest_version": 3,
    "version": "3",
    "author": "LineupExperts",
    "homepage_url": "https:\/\/www.lineupexperts.com",
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "64": "icons\/icon-64.png",
        "96": "icons\/icon-96.png",
        "128": "icons\/icon-128.png"
    },
    "background": {
        "service_worker": "worker.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.espn.com\/*",
                "*:\/\/*.fantrax.com\/*",
                "*:\/\/*.cbssports.com\/*",
                "*:\/\/*.fantasysports.yahoo.com\/*",
                "*:\/\/*.nfl.com\/*",
                "*:\/\/*.fleaflicker.com\/*",
                "*:\/\/*.sleeper.com\/*",
                "*:\/\/*.myfantasyleague.com\/*",
                "*:\/\/*.myffpc.com\/*",
                "*:\/\/*.rtsports.com\/*",
                "*:\/\/*.onroto.com\/*",
                "*:\/\/*.shgn.com\/*"
            ],
            "js": [
                "browser-polyfill.js",
                "lodash.js",
                "ping.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.lineupexperts.com\/*"
            ],
            "js": [
                "browser-polyfill.js",
                "lodash.js",
                "ping.js",
                "cs_lue.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "page_console_intercept.js",
                "page_console_lue.js",
                "page_lue.js",
                "page_lue_ready.js",
                "page_console_yahoo.js",
                "page_cbssports.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*.lineupexperts.com\/*",
        "*:\/\/*.espn.com\/*",
        "*:\/\/*.fantrax.com\/*",
        "*:\/\/*.yahoo.com\/*",
        "*:\/\/*.yahooapis.com\/*",
        "*:\/\/*.cbssports.com\/*",
        "*:\/\/*.nfl.com\/*",
        "*:\/\/*.fleaflicker.com\/*",
        "*:\/\/*.sleeper.com\/*",
        "*:\/\/*.sleeper.app\/*",
        "*:\/\/*.myfantasyleague.com\/*",
        "*:\/\/*.myffpc.com\/*",
        "*:\/\/*.rtsports.com\/*",
        "*:\/\/*.onroto.com\/*",
        "*:\/\/*.shgn.com\/*"
    ],
    "permissions": [
        "storage",
        "alarms",
        "cookies"
    ]
}