ESPN Fantasy Basketball Lineup
Fill your lineup with active players
Cos'è ESPN Fantasy Basketball Lineup?
ESPN Fantasy Basketball Lineup è un'estensione di Chrome sviluppata da minastirithprojects, e la sua funzione principale è "Fill your lineup with active players".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione ESPN Fantasy Basketball Lineup
Scarica i file di estensione ESPN Fantasy Basketball Lineup in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | ESPN Fantasy Basketball Lineup |
ID | ipcaphmhnimmhdjniacnapehfdmikdpn |
URL Ufficiale | https://chromewebstore.google.com/detail/espn-fantasy-basketball-l/ipcaphmhnimmhdjniacnapehfdmikdpn |
Descrizione | Fill your lineup with active players |
Dimensione del File | 30.26 KB |
Conteggio Installazioni | 52 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2021-01-10 |
Data di Pubblicazione | 2021-01-07 |
Sviluppatore | minastirithprojects |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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 } |