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はjustlikepudgeによって開発されたChromeの拡張機能で、その主な機能は「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拡張機能のCRXファイルをダウンロード
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 |
Eメール | [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" ] } |