Fantasy Baseball Top Prospect Finder

Highlight the players who appear on MLB's Top Prospect list.

Fantasy Baseball Top Prospect Finder란 무엇입니까?

Fantasy Baseball Top Prospect Finder은(는) Fantasy Gizmo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Highlight the players who appear on MLB's Top Prospect list."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Fantasy Baseball Top Prospect Finder 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Highlight players who are among the top 100 prospects and show scouting information from MLB Pipeline. Great for staying on top of up-and-coming rookies! Works with ESPN, Yahoo, CBS Sports, and Fantrax leagues.                    

확장 프로그램 기본 정보

이름 Fantasy Baseball Top Prospect Finder Fantasy Baseball Top Prospect Finder
ID ofolgoniaiedciagcbfimldjhadnkdjg
공식 URL https://chromewebstore.google.com/detail/fantasy-baseball-top-pros/ofolgoniaiedciagcbfimldjhadnkdjg
설명 Highlight the players who appear on MLB's Top Prospect list.
파일 크기 71.23 KB
설치 횟수 64
현재 버전 0.1.4
최근 업데이트 2021-02-23
출시 날짜 2021-02-16
평점 5.00/5 총 2 개의 평점
개발자 Fantasy Gizmo
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://fantasygizmo.com?utm_source=chrome-extension-store
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fantasy Baseball Top Prospect Finder",
    "version": "0.1.4",
    "description": "Highlight the players who appear on MLB's Top Prospect list.",
    "background": {
        "scripts": [
            "js\/background.js",
            "js\/library.js"
        ],
        "persistent": false
    },
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "include_globs": [
                "*:\/\/fantasy.espn.com\/baseball\/*",
                "*:\/\/baseball.fantasysports.yahoo.com\/*",
                "*:\/\/*.baseball.cbssports.com\/*",
                "*:\/\/*fantrax.com\/fantasy*"
            ],
            "css": [
                "css\/prospects.css"
            ],
            "js": [
                "js\/jquery-3.5.1.min.js",
                "js\/library.js",
                "js\/contentscript.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "options_page": "html\/options.html",
    "permissions": [
        "*:\/\/fantasy.espn.com\/baseball\/*",
        "*:\/\/baseball.fantasysports.yahoo.com\/*",
        "*:\/\/*.baseball.cbssports.com\/*",
        "*:\/\/*fantrax.com\/fantasy*",
        "storage"
    ],
    "web_accessible_resources": [
        "images\/*"
    ]
}