Fantasy Points Browser Extension

League import bridge for FantasyPoints.com #ScoreMore.

Co je Fantasy Points Browser Extension?

Fantasy Points Browser Extension je rozšíření Chrome vyvinuté https://fantasypoints.com, a jeho hlavní funkcí je „League import bridge for FantasyPoints.com #ScoreMore.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Fantasy Points Browser Extension

Stáhněte si soubory rozšíření Fantasy Points Browser Extension ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        The Fantasy Points Browser Extension serves as an authentication bridge between your fantasy leagues and Fantasy Points. Once installed you can import leagues from ESPN, CBS, NFL and more at FantasyPoints.com.                    

Základní Informace o Rozšíření

Název Fantasy Points Browser Extension Fantasy Points Browser Extension
ID acacbbhfboldggccadfeopfbliabpock
Oficiální URL https://chromewebstore.google.com/detail/fantasy-points-browser-ex/acacbbhfboldggccadfeopfbliabpock
Popis League import bridge for FantasyPoints.com #ScoreMore.
Velikost souboru 46.38 KB
Počet instalací 2,771
Aktuální Verze 2.0.1
Poslední Aktualizace 2023-09-18
Datum Vydání 2021-08-22
Vývojář https://fantasypoints.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://www.fantasypoints.com
URL Stránky Nápovědy https://support.fantasypoints.com
URL Stránky Zásad Ochrany Soukromí https://www.fantasypoints.com/privacy
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fantasy Points Browser Extension",
    "description": "League import bridge for FantasyPoints.com #ScoreMore.",
    "version": "2.0.1",
    "short_name": "FPBE",
    "homepage_url": "https:\/\/www.fantasypoints.com",
    "manifest_version": 3,
    "icons": {
        "16": "icon\/16.png",
        "19": "icon\/19.png",
        "32": "icon\/38.png",
        "38": "icon\/38.png",
        "48": "icon\/48.png",
        "128": "icon\/128.png"
    },
    "action": {
        "default_popup": "src\/popup.html",
        "default_title": "Fantasy Points",
        "default_icon": {
            "19": "icon\/19.png",
            "38": "icon\/38.png"
        }
    },
    "background": {
        "service_worker": "src\/background.js"
    },
    "permissions": [
        "scripting",
        "tabs",
        "cookies",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*.nfl.com\/*",
        "*:\/\/*.espn.com\/*",
        "*:\/\/*.cbssports.com\/*",
        "http:\/\/localhost\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.nfl.com\/*",
                "*:\/\/*.espn.com\/*",
                "*:\/\/*.cbssports.com\/*",
                "*:\/\/*.fantasypoints.com\/*"
            ],
            "js": [
                "src\/content-script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "img\/logo-wordmark-gray-black.svg"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval' http:\/\/localhost:*; object-src 'self';"
    }
}