AFLW Fantasy Points

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

¿Qué es AFLW Fantasy Points?

AFLW Fantasy Points es una extensión de Chrome desarrollada por teeerevor, y su función principal es "This extension will calculate AFLW Fantasy Points and add them to a AFLW site match centre.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión AFLW Fantasy Points

Descarga archivos de extensión AFLW Fantasy Points en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

Información Básica de la Extensión

Nombre AFLW Fantasy Points AFLW Fantasy Points
ID jdijkfokghmfdfpkombhpffmpohhbadf
URL Oficial https://chromewebstore.google.com/detail/aflw-fantasy-points/jdijkfokghmfdfpkombhpffmpohhbadf
Descripción This extension will calculate AFLW Fantasy Points and add them to a AFLW site match centre.
Tamaño del Archivo 7.47 KB
Cantidad de Instalaciones 66
Versión Actual 0.0.0.2
Última Actualización 2022-09-01
Fecha de Publicación 2022-08-30
Desarrollador teeerevor
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/teeerevor/aflw-fantasy-stats-chrome-extension
Idiomas Soportados 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\/*"
            ]
        }
    ]
}