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.

What is ESPN Private League Key API?

ESPN Private League Key API is a Chrome extension developed by justlikepudge, and its main feature is "This extension will get a users ESPN API keys for accessing private leagues. These keys can be used by websites to access ESPN APIs.".

Extension Screenshots

screenshot

Download ESPN Private League Key API Extension CRX File

Download ESPN Private League Key API extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name ESPN Private League Key API ESPN Private League Key API
ID bakealnpgdijapoiibbgdbogehhmaopn
Official URL https://chromewebstore.google.com/detail/espn-private-league-key-a/bakealnpgdijapoiibbgdbogehhmaopn
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.
File Size 22.15 KB
Installation Count 4,357
Current Version 1.4
Last Updated 2019-09-11
Publish Date 2019-09-10
Developer justlikepudge
Email [email protected]
Payment Type free
Supported Languages 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"
    ]
}