ESPN Boris Chen Tiers
Integrates Boris Chen tiers into ESPN Fantasy Football
ESPN Boris Chen Tiers क्या है?
ESPN Boris Chen Tiers Abhinav K द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Integrates Boris Chen tiers into ESPN Fantasy Football"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में ESPN Boris Chen Tiers एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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]" } } } |