AFLW Fantasy Points
This extension will calculate AFLW Fantasy Points and add them to a AFLW site match centre.
Co to jest AFLW Fantasy Points?
AFLW Fantasy Points to rozszerzenie Chrome opracowane przez teeerevor, a jego główną funkcją jest „This extension will calculate AFLW Fantasy Points and add them to a AFLW site match centre.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia AFLW Fantasy Points
Pobierz pliki rozszerzeń AFLW Fantasy Points w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Get live scoring updates and sort the players on their fantasy output. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | jdijkfokghmfdfpkombhpffmpohhbadf |
| Oficjalny URL | https://chromewebstore.google.com/detail/aflw-fantasy-points/jdijkfokghmfdfpkombhpffmpohhbadf |
| Opis | This extension will calculate AFLW Fantasy Points and add them to a AFLW site match centre. |
| Rozmiar pliku | 7.47 KB |
| Liczba instalacji | 66 |
| Aktualna Wersja | 0.0.0.2 |
| Ostatnia Aktualizacja | 2022-09-01 |
| Data Publikacji | 2022-08-30 |
| Deweloper | teeerevor |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/teeerevor/aflw-fantasy-stats-chrome-extension |
| Obsługiwane Języki | 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\/*"
]
}
]
} | |