AFLW Fantasy Points

This extension will calculate AFLW Fantasy Points and add them to a AFLW site match centre.

Was ist AFLW Fantasy Points?

AFLW Fantasy Points ist eine Chrome-Erweiterung, die von teeerevor entwickelt wurde, und ihr Hauptmerkmal ist "This extension will calculate AFLW Fantasy Points and add them to a AFLW site match centre.".

Erweiterungsscreenshots

screenshot

AFLW Fantasy Points-Erweiterungs-CRX-Datei herunterladen

Laden Sie AFLW Fantasy Points-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

                        Get live scoring updates and sort the players on their fantasy output.                    

Grundlegende Informationen zur Erweiterung

Name AFLW Fantasy Points AFLW Fantasy Points
ID jdijkfokghmfdfpkombhpffmpohhbadf
Offizielle URL https://chromewebstore.google.com/detail/aflw-fantasy-points/jdijkfokghmfdfpkombhpffmpohhbadf
Beschreibung This extension will calculate AFLW Fantasy Points and add them to a AFLW site match centre.
Dateigröße 7.47 KB
Installationsanzahl 66
Aktuelle Version 0.0.0.2
Letztes Update 2022-09-01
Veröffentlichungsdatum 2022-08-30
Entwickler teeerevor
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/teeerevor/aflw-fantasy-stats-chrome-extension
Unterstützte Sprachen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AFLW Fantasy Points",
    "description": "This extension will calculate AFLW Fantasy Points and add them to a AFLW site match centre.",
    "version": "0.0.0.2",
    "manifest_version": 3,
    "icons": {
        "16": "\/images\/dubLogo16.png",
        "32": "\/images\/dubLogo32.png",
        "48": "\/images\/dubLogo48.png",
        "128": "\/images\/dubLogo128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.womens.afl\/*"
            ],
            "run_at": "document_start",
            "js": [
                "inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "pointsTracker.js"
            ],
            "matches": [
                "*:\/\/www.womens.afl\/*"
            ]
        }
    ]
}