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.

Cos'è ESPN Private League Key API?

ESPN Private League Key API è un'estensione di Chrome sviluppata da justlikepudge, e la sua funzione principale è "This extension will get a users ESPN API keys for accessing private leagues. These keys can be used by websites to access ESPN APIs.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione ESPN Private League Key API

Scarica i file di estensione ESPN Private League Key API in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome ESPN Private League Key API ESPN Private League Key API
ID bakealnpgdijapoiibbgdbogehhmaopn
URL Ufficiale https://chromewebstore.google.com/detail/espn-private-league-key-a/bakealnpgdijapoiibbgdbogehhmaopn
Descrizione This extension will get a users ESPN API keys for accessing private leagues. These keys can be used by websites to access ESPN APIs.
Dimensione del File 22.15 KB
Conteggio Installazioni 4,357
Versione Corrente 1.4
Ultimo Aggiornamento 2019-09-11
Data di Pubblicazione 2019-09-10
Sviluppatore justlikepudge
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}