Fantasy Basketball Video Replays

Watch replays of every individual statistic right on your fantasy basketball pages.

什麼是Fantasy Basketball Video Replays?

Fantasy Basketball Video Replays是由statreplay開發的Chrome擴展程式,該擴展的主要功能是“Watch replays of every individual statistic right on your fantasy basketball pages.”。

擴展截圖

screenshot

下載Fantasy Basketball Video Replays擴展crx文件

下載Fantasy Basketball Video Replays擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Do you find yourself lacking the time to watch every game for your fantasy basketball team? Is watching highlights on YouTube something you do to save time on having to watch all those games?

This chrome extension is for you. Highlights (and lowlights) for fantasy basketball standard 9-cat are available directly on your Yahoo Fantasy Basketball team's page. The following stats are support on a team's page: 3PM, REB, AST, STL, BLK, and TO. Each stat will have a link to open a modal window that contains each play's video so you can watch and analyze your player's performances!

v0.0.2:
- Support Yahoo Fantasy Basketball Team's Page
- Stats supported: 3PM, REB, AST, STL, BLK, TO

Coming soon:
- Support the Yahoo Fantasy Basketball Matchup's Page
- Support the Yahoo Fantasy Basketball Player's List Page
- Support new stats: FGM, FGA, FTM, FTA
- Autoplay videos (automatically play next video)                    

擴展基本資訊

名稱 Fantasy Basketball Video Replays Fantasy Basketball Video Replays
ID lmoplljfbphlbkjhidbghfhflmjfaapm
官方網址 https://chromewebstore.google.com/detail/fantasy-basketball-video/lmoplljfbphlbkjhidbghfhflmjfaapm
簡介 Watch replays of every individual statistic right on your fantasy basketball pages.
檔案大小 352 KB
安裝次數 44
目前版本 0.0.2
更新時間 2021-11-14
上架時間 2021-11-10
評分 5.00/5 共 1 次評分
開發者 statreplay
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fantasy Basketball Video Replays",
    "description": "Watch replays of every individual statistic right on your fantasy basketball pages.",
    "version": "0.0.2",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/basketball.fantasysports.yahoo.com\/nba\/*"
            ],
            "css": [
                ".\/static\/css\/bootstraplistgroup.css",
                ".\/static\/css\/modal.css",
                ".\/static\/css\/videojs.css"
            ],
            "js": [
                ".\/static\/js\/content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "content_security_policy": {
        "extension_pages": "default-src 'self'; style-src 'self' data: 'unsafe-inline'; connect-src https:\/\/* data: blob: filesystem:;"
    },
    "permissions": [
        "activeTab"
    ],
    "action": {
        "default_popup": "index.html",
        "default_icon": {
            "16": "play-button-16.png",
            "32": "play-button-32.png",
            "48": "play-button-48.png",
            "128": "play-button-128.png"
        }
    },
    "icons": {
        "16": "play-button-16.png",
        "32": "play-button-32.png",
        "48": "play-button-48.png",
        "128": "play-button-128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "ball-triangle.svg"
            ],
            "matches": [
                "https:\/\/basketball.fantasysports.yahoo.com\/*"
            ]
        }
    ]
}