Bionic

Automate your fantasy basketball experience.

Bionic란 무엇입니까?

Bionic은(는) Bionic Systems에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automate your fantasy basketball experience."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Bionic 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Bionic Bionic
ID hjpjljchacdncdgdbehnbinbaopnijlp
공식 URL https://chromewebstore.google.com/detail/bionic/hjpjljchacdncdgdbehnbinbaopnijlp
설명 Automate your fantasy basketball experience.
파일 크기 2.51 MB
설치 횟수 331
현재 버전 1.1.3
최근 업데이트 2023-10-15
출시 날짜 2020-12-13
평점 5.00/5 총 3 개의 평점
개발자 Bionic Systems
이메일 [email protected]
결제 유형 free
지원되는 언어 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"
    ]
}