ESPN Fantasy Basketball Lineup
Fill your lineup with active players
Was ist ESPN Fantasy Basketball Lineup?
ESPN Fantasy Basketball Lineup ist eine Chrome-Erweiterung, die von minastirithprojects entwickelt wurde, und ihr Hauptmerkmal ist "Fill your lineup with active players".
Erweiterungsscreenshots
ESPN Fantasy Basketball Lineup-Erweiterungs-CRX-Datei herunterladen
Laden Sie ESPN Fantasy Basketball Lineup-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This Chrome extension is used for ESPN Fantasy Basketball teams.
This extension is useful for teams that follow this ordered format:
PG, SG, SF, PF, C, G, F, any # of UTIL's.
This extension may not work as the user desires for days that have more active players than there are lineup spots or for general days. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ipcaphmhnimmhdjniacnapehfdmikdpn |
| Offizielle URL | https://chromewebstore.google.com/detail/espn-fantasy-basketball-l/ipcaphmhnimmhdjniacnapehfdmikdpn |
| Beschreibung | Fill your lineup with active players |
| Dateigröße | 30.26 KB |
| Installationsanzahl | 52 |
| Aktuelle Version | 1.1 |
| Letztes Update | 2021-01-10 |
| Veröffentlichungsdatum | 2021-01-07 |
| Entwickler | minastirithprojects |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "ESPN Fantasy Basketball Lineup",
"version": "1.1",
"description": "Fill your lineup with active players",
"permissions": [
"activeTab",
"declarativeContent"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"page_action": {
"default_icon": {
"16": "images\/logo16.png",
"32": "images\/logo32.png",
"48": "images\/logo48.png",
"128": "images\/logo128.png"
},
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.fantasy.espn.com\/basketball\/team*"
],
"js": [
"content.js"
]
}
],
"icons": {
"16": "images\/logo16.png",
"32": "images\/logo32.png",
"48": "images\/logo48.png",
"128": "images\/logo128.png"
},
"manifest_version": 2
} | |