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ファイルをダウンロード

ESPN Boris Chen Tiers拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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]"
        }
    }
}