Fantasy Points Browser Extension
League import bridge for FantasyPoints.com #ScoreMore.
Fantasy Points Browser Extensionคืออะไร?
Fantasy Points Browser Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://fantasypoints.com และคุณลักษณะหลักของมันคือ "League import bridge for FantasyPoints.com #ScoreMore."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Fantasy Points Browser Extension
ดาวน์โหลดไฟล์ส่วนขยาย Fantasy Points Browser Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
The Fantasy Points Browser Extension serves as an authentication bridge between your fantasy leagues and Fantasy Points. Once installed you can import leagues from ESPN, CBS, NFL and more at FantasyPoints.com.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Fantasy Points Browser Extension |
ID | acacbbhfboldggccadfeopfbliabpock |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/fantasy-points-browser-ex/acacbbhfboldggccadfeopfbliabpock |
คำอธิบาย | League import bridge for FantasyPoints.com #ScoreMore. |
ขนาดไฟล์ | 46.38 KB |
จำนวนการติดตั้ง | 2,771 |
เวอร์ชันปัจจุบัน | 2.0.1 |
อัปเดตครั้งล่าสุด | 2023-09-18 |
วันที่เผยแพร่ | 2021-08-22 |
ผู้พัฒนา | https://fantasypoints.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://www.fantasypoints.com |
URL หน้าช่วยเหลือ | https://support.fantasypoints.com |
URL หน้านโยบายความเป็นส่วนตัว | https://www.fantasypoints.com/privacy |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Fantasy Points Browser Extension", "description": "League import bridge for FantasyPoints.com #ScoreMore.", "version": "2.0.1", "short_name": "FPBE", "homepage_url": "https:\/\/www.fantasypoints.com", "manifest_version": 3, "icons": { "16": "icon\/16.png", "19": "icon\/19.png", "32": "icon\/38.png", "38": "icon\/38.png", "48": "icon\/48.png", "128": "icon\/128.png" }, "action": { "default_popup": "src\/popup.html", "default_title": "Fantasy Points", "default_icon": { "19": "icon\/19.png", "38": "icon\/38.png" } }, "background": { "service_worker": "src\/background.js" }, "permissions": [ "scripting", "tabs", "cookies", "storage" ], "host_permissions": [ "*:\/\/*.nfl.com\/*", "*:\/\/*.espn.com\/*", "*:\/\/*.cbssports.com\/*", "http:\/\/localhost\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.nfl.com\/*", "*:\/\/*.espn.com\/*", "*:\/\/*.cbssports.com\/*", "*:\/\/*.fantasypoints.com\/*" ], "js": [ "src\/content-script.js" ] } ], "web_accessible_resources": [ { "resources": [ "img\/logo-wordmark-gray-black.svg" ], "matches": [ "*:\/\/*\/*" ] } ], "content_security_policy": { "extension_pages": "script-src 'self' 'wasm-unsafe-eval' http:\/\/localhost:*; object-src 'self';" } } |