AFLW Fantasy Points
This extension will calculate AFLW Fantasy Points and add them to a AFLW site match centre.
什么是AFLW Fantasy Points?
AFLW Fantasy Points是由teeerevor开发的Chrome扩展程序,该扩展的主要功能是“This extension will calculate AFLW Fantasy Points and add them to a AFLW site match centre.”。
扩展截图
下载AFLW Fantasy Points扩展crx文件
下载AFLW Fantasy Points扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Get live scoring updates and sort the players on their fantasy output. 扩展基本信息
| 名称 | |
| ID | jdijkfokghmfdfpkombhpffmpohhbadf |
| 官方URL | https://chromewebstore.google.com/detail/aflw-fantasy-points/jdijkfokghmfdfpkombhpffmpohhbadf |
| 简介 | This extension will calculate AFLW Fantasy Points and add them to a AFLW site match centre. |
| 文件大小 | 7.47 KB |
| 安装次数 | 66 |
| 当前版本 | 0.0.0.2 |
| 更新时间 | 2022-09-01 |
| 上架时间 | 2022-08-30 |
| 开发者 | teeerevor |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/teeerevor/aflw-fantasy-stats-chrome-extension |
| 支持的语言 | 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\/*"
]
}
]
} | |