LineupExperts

Get expert advice for your fantasy teams.

Τι είναι το LineupExperts;

Το LineupExperts είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον LineupExperts.com, και η κύρια λειτουργία του είναι "Get expert advice for your fantasy teams.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης LineupExperts

Λήψη αρχείων επέκτασης LineupExperts σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα LineupExperts LineupExperts
ID gcniklopcjcohhkeldmfbjocjmngakne
Επίσημο URL https://chromewebstore.google.com/detail/lineupexperts/gcniklopcjcohhkeldmfbjocjmngakne
Περιγραφή Get expert advice for your fantasy teams.
Μέγεθος Αρχείου 229 KB
Αριθμός Εγκαταστάσεων 3,837
Τρέχουσα Έκδοση 3
Τελευταία Ενημέρωση 2023-09-01
Ημερομηνία Δημοσίευσης 2023-05-24
Αξιολόγηση 5.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής LineupExperts.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.lineupexperts.com/
Διεύθυνση URL της Σελίδας Βοήθειας https://www.lineupexperts.com/Contact-Us
URL της Σελίδας Πολιτικής Απορρήτου https://www.lineupexperts.com/privacy.php
Υποστηριζόμενες Γλώσσες 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"
    ]
}