ESPN Boris Chen Tiers

Integrates Boris Chen tiers into ESPN Fantasy Football

Qu'est-ce que ESPN Boris Chen Tiers ?

ESPN Boris Chen Tiers est une extension Chrome développée par Abhinav K, et sa fonction principale est "Integrates Boris Chen tiers into ESPN Fantasy Football".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension ESPN Boris Chen Tiers

Téléchargez les fichiers d'extension ESPN Boris Chen Tiers au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom ESPN Boris Chen Tiers ESPN Boris Chen Tiers
ID jeepoadedgacclojbfelfglcpldddbpk
URL Officiel https://chromewebstore.google.com/detail/espn-boris-chen-tiers/jeepoadedgacclojbfelfglcpldddbpk
Description Integrates Boris Chen tiers into ESPN Fantasy Football
Taille du Fichier 892 KB
Nombre d'Installations 361
Version Actuelle 2.1
Dernière Mise à Jour 2019-09-13
Date de Publication 2019-09-13
Évaluation 3.00/5 Total 2 Évaluations
Développeur Abhinav K
Type de Paiement free
Site Web de l'Extension https://github.com/abhinavk99/espn-borischentiers
URL de la Page d'Aide https://github.com/abhinavk99/espn-borischentiers
Langues Prises en Charge 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]"
        }
    }
}