LineupExperts

Get expert advice for your fantasy teams.

Cos'è LineupExperts?

LineupExperts è un'estensione di Chrome sviluppata da LineupExperts.com, e la sua funzione principale è "Get expert advice for your fantasy teams.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione LineupExperts

Scarica i file di estensione LineupExperts in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome LineupExperts LineupExperts
ID gcniklopcjcohhkeldmfbjocjmngakne
URL Ufficiale https://chromewebstore.google.com/detail/lineupexperts/gcniklopcjcohhkeldmfbjocjmngakne
Descrizione Get expert advice for your fantasy teams.
Dimensione del File 229 KB
Conteggio Installazioni 3,837
Versione Corrente 3
Ultimo Aggiornamento 2023-09-01
Data di Pubblicazione 2023-05-24
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore LineupExperts.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.lineupexperts.com/
URL della Pagina di Aiuto https://www.lineupexperts.com/Contact-Us
URL della Pagina della Politica sulla Privacy https://www.lineupexperts.com/privacy.php
Lingue Supportate 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"
    ]
}