ESPN Private League Key API
This extension will get a users ESPN API keys for accessing private leagues. These keys can be used by websites to access ESPN APIs.
ESPN Private League Key APIคืออะไร?
ESPN Private League Key API เป็นส่วนขยายของ Chrome ที่พัฒนาโดย justlikepudge และคุณลักษณะหลักของมันคือ "This extension will get a users ESPN API keys for accessing private leagues. These keys can be used by websites to access ESPN APIs."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ESPN Private League Key API
ดาวน์โหลดไฟล์ส่วนขยาย ESPN Private League Key API ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension will allow users to retrieve crucial keys needed to access leagues via API. This will allow websites to access private league data for a user.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | ESPN Private League Key API |
ID | bakealnpgdijapoiibbgdbogehhmaopn |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/espn-private-league-key-a/bakealnpgdijapoiibbgdbogehhmaopn |
คำอธิบาย | This extension will get a users ESPN API keys for accessing private leagues. These keys can be used by websites to access ESPN APIs. |
ขนาดไฟล์ | 22.15 KB |
จำนวนการติดตั้ง | 4,357 |
เวอร์ชันปัจจุบัน | 1.4 |
อัปเดตครั้งล่าสุด | 2019-09-11 |
วันที่เผยแพร่ | 2019-09-10 |
ผู้พัฒนา | justlikepudge |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "ESPN Private League Key API", "description": "This extension will get a users ESPN API keys for accessing private leagues. These keys can be used by websites to access ESPN APIs.", "version": "1.4", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "cookies", "*:\/\/*.espn.com\/", "activeTab" ], "content_scripts": [ { "matches": [ "https:\/\/theffhub.com\/*", "https:\/\/www.theffhub.com\/*" ], "js": [ "myapi.js", "content_script.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ "myapi.js" ] } |