ESPN Boris Chen Tiers

Integrates Boris Chen tiers into ESPN Fantasy Football

ESPN Boris Chen Tiers란 무엇입니까?

ESPN Boris Chen Tiers은(는) Abhinav K에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Integrates Boris Chen tiers into ESPN Fantasy Football"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

ESPN Boris Chen Tiers 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        On the team pages and the free agents pages on the ESPN Fantasy Football website, a column is added that displays the Boris Chen ranking of each player on your team. If the player is not on the tier list, he will be Unranked.

By default, the extension uses PPR data from Boris Chen, but you can also choose Standard or 0.5 PPR in the options, which can be accessed from the toolbar icon or Chrome's list of extensions. If you would like the cells to be colored based on the tier, you can set that in the settings as well.

Thanks to www.borischen.co for providing the necessary data.                    

확장 프로그램 기본 정보

이름 ESPN Boris Chen Tiers ESPN Boris Chen Tiers
ID jeepoadedgacclojbfelfglcpldddbpk
공식 URL https://chromewebstore.google.com/detail/espn-boris-chen-tiers/jeepoadedgacclojbfelfglcpldddbpk
설명 Integrates Boris Chen tiers into ESPN Fantasy Football
파일 크기 892 KB
설치 횟수 361
현재 버전 2.1
최근 업데이트 2019-09-13
출시 날짜 2019-09-13
평점 3.00/5 총 2 개의 평점
개발자 Abhinav K
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/abhinavk99/espn-borischentiers
도움말 페이지 URL https://github.com/abhinavk99/espn-borischentiers
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ESPN Boris Chen Tiers",
    "version": "2.1",
    "description": "Integrates Boris Chen tiers into ESPN Fantasy Football",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/fantasy.espn.com\/football\/team?*",
                "*:\/\/fantasy.espn.com\/football\/players\/add?*"
            ],
            "js": [
                "src\/js\/playerNameFixes.js",
                "src\/js\/constants.js",
                "src\/js\/tierColors.js",
                "src\/js\/espn-borischentiers.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "96": "icons\/icon-96.png"
    },
    "permissions": [
        "https:\/\/s3-us-west-1.amazonaws.com\/fftiers\/out\/*",
        "storage"
    ],
    "browser_action": {
        "browser_style": true,
        "chrome_style": true,
        "default_icon": {
            "16": "icons\/icon-16.png",
            "32": "icons\/icon-32.png",
            "48": "icons\/icon-48.png",
            "96": "icons\/icon-96.png"
        },
        "default_title": "ESPN Boris Chen Tiers",
        "default_popup": "src\/options.html"
    },
    "options_ui": {
        "page": "src\/options.html",
        "browser_style": true,
        "chrome_style": true
    },
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}