Yahoo Fantasy Sports Tools

Check a Fantasy player's status anywhere on the web without going to your league page by highlighting and right clicking.

Was ist Yahoo Fantasy Sports Tools?

Yahoo Fantasy Sports Tools ist eine Chrome-Erweiterung, die von ibril15 entwickelt wurde, und ihr Hauptmerkmal ist "Check a Fantasy player's status anywhere on the web without going to your league page by highlighting and right clicking.".

Erweiterungsscreenshots

screenshot
screenshot

Yahoo Fantasy Sports Tools-Erweiterungs-CRX-Datei herunterladen

Laden Sie Yahoo Fantasy Sports Tools-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extension allows you to search for a player in any of your Yahoo Fantasy Leagues by selecting the player's name anywhere on the web, right clicking, and searching in the league.  This supports Yahoo Fantasy Football, Yahoo Fantasy Baseball, Yahoo Fantasy Basketball, and Yahoo Fantasy Hockey too!

This extension never gathers or stores your username and password! You provide your credentials directly to Yahoo (using OAUTH).

Click on the extension to search for leagues to add to the extension. You can also clear all data in case you want to start over.

This extension is completely free!

This extension is in active development, so please let me know what features you'd like to see (and what bugs you'd like fixed)!                    

Grundlegende Informationen zur Erweiterung

Name Yahoo Fantasy Sports Tools Yahoo Fantasy Sports Tools
ID ghjjkjiibfblgoedjefjbllppdihlfca
Offizielle URL https://chrome.google.com/webstore/detail/ghjjkjiibfblgoedjefjbllppdihlfca
Beschreibung Check a Fantasy player's status anywhere on the web without going to your league page by highlighting and right clicking.
Dateigröße 20.95 KB
Installationsanzahl 528
Aktuelle Version 0.0.16
Letztes Update 2020-10-27
Veröffentlichungsdatum 2018-08-12
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler ibril15
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Yahoo Fantasy Sports Tools",
    "version": "0.0.16",
    "manifest_version": 2,
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3ZceJoaGqDHXuVjZKRO4zFaVrzjkcC3Gwc\/iAlByu8RSaTijdD\/90iDUrCnFwKaW2TkhQh+rvhxQ0HBuAOkqbMAzNaCri3XRj6LmL8QoEWAFC6qpapTRzz+4msrO\/uEi4lVeQqKxCK8rxoWbbYk8bl7DX7bY2SDT\/Rct+LZfqNV2YeMCsy82qDj\/lcWoRqZ8JSGSKkX19kYWsrun8RhxOaLf+LVCoBghm93grrHPzklGdD3vS+b4DNEl4j+b4i6oY1Y1BycQr0xwjynfmdMYcKGvzu0\/ikAfncM2s9RBPFte\/p1\/U7cPt6GYi2Fd+tS53kRZHNzGvKg9JRvJpTbBwQIDAQAB",
    "description": "Check a Fantasy player's status anywhere on the web without going to your league page by highlighting and right clicking.",
    "permissions": [
        "contextMenus",
        "activeTab",
        "https:\/\/api.login.yahoo.com\/oauth2\/request_auth",
        "https:\/\/api.login.yahoo.com\/oauth2\/get_token",
        "identity",
        "storage",
        "https:\/\/www.googleapis.com\/"
    ],
    "background": {
        "scripts": [
            "yahooglobals.js",
            "oauth.js",
            "licenseapi.js",
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js",
                "playerpopup.js"
            ],
            "css": [
                "results.css"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "results.css"
    ],
    "oauth2": {
        "client_id": "162026794767-9jal5dosmurj8njp2dpo58o1lunu9dp0.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/plus.login",
            "https:\/\/www.googleapis.com\/auth\/chromewebstore.readonly"
        ]
    }
}