ESPN Boris Chen Tiers

Integrates Boris Chen tiers into ESPN Fantasy Football

ESPN Boris Chen Tiersคืออะไร?

ESPN Boris Chen Tiers เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Abhinav K และคุณลักษณะหลักของมันคือ "Integrates Boris Chen tiers into ESPN Fantasy Football"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ESPN Boris Chen Tiers

ดาวน์โหลดไฟล์ส่วนขยาย 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]"
        }
    }
}