AFLW Fantasy Points
This extension will calculate AFLW Fantasy Points and add them to a AFLW site match centre.
Vad är AFLW Fantasy Points?
AFLW Fantasy Points är en Chrome-tillägg utvecklad av teeerevor, och dess huvudfunktion är "This extension will calculate AFLW Fantasy Points and add them to a AFLW site match centre.".
Tilläggsskärmbilder
Ladda ner AFLW Fantasy Points-förlängningens CRX-fil
Ladda ner AFLW Fantasy Points-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Get live scoring updates and sort the players on their fantasy output. Grundläggande Information om Tillägg
| Namn | |
| ID | jdijkfokghmfdfpkombhpffmpohhbadf |
| Officiell webbadress | https://chromewebstore.google.com/detail/aflw-fantasy-points/jdijkfokghmfdfpkombhpffmpohhbadf |
| Beskrivning | This extension will calculate AFLW Fantasy Points and add them to a AFLW site match centre. |
| Filstorlek | 7.47 KB |
| Antal Installationer | 66 |
| Aktuell Version | 0.0.0.2 |
| Senast Uppdaterad | 2022-09-01 |
| Publiceringsdatum | 2022-08-30 |
| Utvecklare | teeerevor |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/teeerevor/aflw-fantasy-stats-chrome-extension |
| Stödda Språk | 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\/*"
]
}
]
} | |