AFLW Fantasy Points

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

Cos'è AFLW Fantasy Points?

AFLW Fantasy Points è un'estensione di Chrome sviluppata da teeerevor, e la sua funzione principale è "This extension will calculate AFLW Fantasy Points and add them to a AFLW site match centre.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione AFLW Fantasy Points

Scarica i file di estensione AFLW Fantasy Points 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

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

Informazioni di Base sull'Estensione

Nome AFLW Fantasy Points AFLW Fantasy Points
ID jdijkfokghmfdfpkombhpffmpohhbadf
URL Ufficiale https://chromewebstore.google.com/detail/aflw-fantasy-points/jdijkfokghmfdfpkombhpffmpohhbadf
Descrizione This extension will calculate AFLW Fantasy Points and add them to a AFLW site match centre.
Dimensione del File 7.47 KB
Conteggio Installazioni 66
Versione Corrente 0.0.0.2
Ultimo Aggiornamento 2022-09-01
Data di Pubblicazione 2022-08-30
Sviluppatore teeerevor
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/teeerevor/aflw-fantasy-stats-chrome-extension
Lingue Supportate 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\/*"
            ]
        }
    ]
}