Bionic

Automate your fantasy basketball experience.

Was ist Bionic?

Bionic ist eine Chrome-Erweiterung, die von Bionic Systems entwickelt wurde, und ihr Hauptmerkmal ist "Automate your fantasy basketball experience.".

Erweiterungsscreenshots

screenshot
screenshot

Bionic-Erweiterungs-CRX-Datei herunterladen

Laden Sie Bionic-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

                        Bionic will give you superpowers in your fantasy basketball league. Currently, only ESPN WNBA & ESPN NBA leagues are supported.

Features:

* Automatically set rosters. Tired of manually moving players from your bench into your lineup every single day? Is your league plagued with players who constantly forget to set their rosters? Bionic solves this problem by letting automatically setting your roster, for any range of days.
* Supports ESPN WNBA and ESPN NBA fantasy leagues.

How To Use:

* Navigate to the "My Team" tab on your fantasy basketball dashboard, and you should be able to access Bionic from there.                    

Grundlegende Informationen zur Erweiterung

Name Bionic Bionic
ID hjpjljchacdncdgdbehnbinbaopnijlp
Offizielle URL https://chromewebstore.google.com/detail/bionic/hjpjljchacdncdgdbehnbinbaopnijlp
Beschreibung Automate your fantasy basketball experience.
Dateigröße 2.51 MB
Installationsanzahl 331
Aktuelle Version 1.1.3
Letztes Update 2023-10-15
Veröffentlichungsdatum 2020-12-13
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler Bionic Systems
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Bionic",
    "version": "1.1.3",
    "description": "Automate your fantasy basketball experience.",
    "icons": {
        "16": "logos\/bionic-16.png",
        "48": "logos\/bionic-48.png",
        "128": "logos\/bionic-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/fantasy.espn.com\/basketball\/team*",
                "https:\/\/fantasy.espn.com\/womens-basketball\/team*"
            ],
            "css": [
                "dist\/content.css"
            ],
            "js": [
                "dist\/content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "dist\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "https:\/\/fantasy.espn.com\/basketball\/*",
        "https:\/\/fantasy.espn.com\/womens-basketball\/*",
        "https:\/\/site.api.espn.com\/apis\/*"
    ],
    "web_accessible_resources": [
        "src\/fonts\/*.woff",
        "src\/fonts\/*.woff2",
        "src\/images\/*.png",
        "src\/images\/*.svg"
    ]
}