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”。
擴展截圖
下載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 |
ID | jeepoadedgacclojbfelfglcpldddbpk |
官方網址 | 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]" } } } |