LeetSports Fantasy Hockey Tools

Fantasy hockey tools

LeetSports Fantasy Hockey Toolsとは何ですか?

LeetSports Fantasy Hockey ToolsはLeetSportsによって開発されたChromeの拡張機能で、その主な機能は「Fantasy hockey tools」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

LeetSports Fantasy Hockey Tools拡張機能のCRXファイルをダウンロード

LeetSports Fantasy Hockey Tools拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        LeetSports is a collection of fantasy hockey tools to help you win your ESPN, Yahoo, and Fantrax fantasy hockey pools in 2021.

This fantasy hockey extension displays the lineup position of any ESPN, Yahoo, and Fantrax fantasy hockey players, including lines, power play, and penalty kill deployment directly on the website.

Now you are also able to view remaining games and off night games (< half of teams are playing) for each player. You can see games for the remainder of the week or set a custom date range.

Look out for more functionality coming soon! This will include a variety of tools to help you win your fantasy hockey pool this year!

Note: You may need to force refresh your fantasy hockey website to get it work the first time after installing. To do this try Shift-Cmd-R on Mac or Ctrl-F5 for Windows. If this doesn't work, you can always try restarting chrome as well or toggling the extension on/off in chrome://extensions/                    

拡張機能の基本情報

名前 LeetSports Fantasy Hockey Tools LeetSports Fantasy Hockey Tools
ID immpookfmnhkhekgapcepemkdehdlgbb
公式URL https://chromewebstore.google.com/detail/leetsports-fantasy-hockey/immpookfmnhkhekgapcepemkdehdlgbb
説明 Fantasy hockey tools
ファイルサイズ 24.69 KB
インストール数 1,017
現在のバージョン 1.0.4
最終更新日 2022-02-06
公開日 2021-10-14
評価 4.43/5 合計 14 レビュー
開発者 LeetSports
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "LeetSports Fantasy Hockey Tools",
    "description": "Fantasy hockey tools",
    "version": "1.0.4",
    "icons": {
        "128": "res\/icon.png"
    },
    "browser_action": {
        "default_icon": "res\/icon.png",
        "default_popup": "popup.html",
        "default_title": "LeetSports"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/fantasy.espn.com\/hockey\/*"
            ],
            "js": [
                "espn_content.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/hockey.fantasysports.yahoo.com\/hockey\/*"
            ],
            "js": [
                "yahoo_content.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/www.fantrax.com\/fantasy\/league\/*"
            ],
            "js": [
                "fantrax_content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/leetsports-env.eba-fr7wdxc8.us-west-2.elasticbeanstalk.com\/*"
    ]
}