AFLW Fantasy Points

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

Apa itu AFLW Fantasy Points?

AFLW Fantasy Points adalah ekstensi Chrome yang dikembangkan oleh teeerevor, dan fitur utamanya adalah "This extension will calculate AFLW Fantasy Points and add them to a AFLW site match centre.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi AFLW Fantasy Points

Unduh file ekstensi AFLW Fantasy Points dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama AFLW Fantasy Points AFLW Fantasy Points
ID jdijkfokghmfdfpkombhpffmpohhbadf
URL Resmi https://chromewebstore.google.com/detail/aflw-fantasy-points/jdijkfokghmfdfpkombhpffmpohhbadf
Deskripsi This extension will calculate AFLW Fantasy Points and add them to a AFLW site match centre.
Ukuran File 7.47 KB
Jumlah Instalasi 66
Versi Saat Ini 0.0.0.2
Terakhir Diperbarui 2022-09-01
Tanggal Publikasi 2022-08-30
Pengembang teeerevor
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/teeerevor/aflw-fantasy-stats-chrome-extension
Bahasa yang Didukung 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\/*"
            ]
        }
    ]
}