ESPN Fantasy Basketball Lineup
Fill your lineup with active players
什麼是ESPN Fantasy Basketball Lineup?
ESPN Fantasy Basketball Lineup是由minastirithprojects開發的Chrome擴展程式,該擴展的主要功能是“Fill your lineup with active players”。
擴展截圖
下載ESPN Fantasy Basketball Lineup擴展crx文件
下載ESPN Fantasy Basketball Lineup擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This Chrome extension is used for ESPN Fantasy Basketball teams.
This extension is useful for teams that follow this ordered format:
PG, SG, SF, PF, C, G, F, any # of UTIL's.
This extension may not work as the user desires for days that have more active players than there are lineup spots or for general days. 擴展基本資訊
| 名稱 | |
| ID | ipcaphmhnimmhdjniacnapehfdmikdpn |
| 官方網址 | https://chromewebstore.google.com/detail/espn-fantasy-basketball-l/ipcaphmhnimmhdjniacnapehfdmikdpn |
| 簡介 | Fill your lineup with active players |
| 檔案大小 | 30.26 KB |
| 安裝次數 | 52 |
| 目前版本 | 1.1 |
| 更新時間 | 2021-01-10 |
| 上架時間 | 2021-01-07 |
| 開發者 | minastirithprojects |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "ESPN Fantasy Basketball Lineup",
"version": "1.1",
"description": "Fill your lineup with active players",
"permissions": [
"activeTab",
"declarativeContent"
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"page_action": {
"default_icon": {
"16": "images\/logo16.png",
"32": "images\/logo32.png",
"48": "images\/logo48.png",
"128": "images\/logo128.png"
},
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.fantasy.espn.com\/basketball\/team*"
],
"js": [
"content.js"
]
}
],
"icons": {
"16": "images\/logo16.png",
"32": "images\/logo32.png",
"48": "images\/logo48.png",
"128": "images\/logo128.png"
},
"manifest_version": 2
} | |