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.

什么是Yahoo Fantasy Sports Tools?

Yahoo Fantasy Sports Tools是由ibril15开发的Chrome扩展程序,该扩展的主要功能是“Check a Fantasy player's status anywhere on the web without going to your league page by highlighting and right clicking.”。

扩展截图

screenshot
screenshot

下载Yahoo Fantasy Sports Tools扩展crx文件

下载Yahoo Fantasy Sports Tools扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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)!                    

扩展基本信息

名称 Yahoo Fantasy Sports Tools Yahoo Fantasy Sports Tools
ID ghjjkjiibfblgoedjefjbllppdihlfca
官方URL https://chrome.google.com/webstore/detail/ghjjkjiibfblgoedjefjbllppdihlfca
简介 Check a Fantasy player's status anywhere on the web without going to your league page by highlighting and right clicking.
文件大小 20.95 KB
安装次数 528
当前版本 0.0.16
更新时间 2020-10-27
上架时间 2018-08-12
评分 5.00/5 共1次评分
开发者 ibril15
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
        ]
    }
}