Fantasy Points Browser Extension

League import bridge for FantasyPoints.com #ScoreMore.

Was ist Fantasy Points Browser Extension?

Fantasy Points Browser Extension ist eine Chrome-Erweiterung, die von https://fantasypoints.com entwickelt wurde, und ihr Hauptmerkmal ist "League import bridge for FantasyPoints.com #ScoreMore.".

Erweiterungsscreenshots

screenshot
screenshot

Fantasy Points Browser Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie Fantasy Points Browser Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Fantasy Points Browser Extension Fantasy Points Browser Extension
ID acacbbhfboldggccadfeopfbliabpock
Offizielle URL https://chromewebstore.google.com/detail/fantasy-points-browser-ex/acacbbhfboldggccadfeopfbliabpock
Beschreibung League import bridge for FantasyPoints.com #ScoreMore.
Dateigröße 46.38 KB
Installationsanzahl 2,771
Aktuelle Version 2.0.1
Letztes Update 2023-09-18
Veröffentlichungsdatum 2021-08-22
Entwickler https://fantasypoints.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.fantasypoints.com
Hilfeseite URL https://support.fantasypoints.com
URL der Datenschutzrichtlinien-Seite https://www.fantasypoints.com/privacy
Unterstützte Sprachen 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';"
    }
}