Fantasy Targets

Enhances the ESPN fantasy football website with additional information, such as player numbers and receiver targets.

Fantasy Targets là gì?

Fantasy Targets là một tiện ích mở rộng Chrome được phát triển bởi tcbeutler, và tính năng chính của nó là "Enhances the ESPN fantasy football website with additional information, such as player numbers and receiver targets.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Fantasy Targets

Tải xuống các tệp mở rộng Fantasy Targets dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Fantasy Targets puts more information about players right in your ESPN Fantasy Football league pages.

When viewing information on a player, the following data is added to the week-by-week statistics:

- Player number
- Receiving Targets                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Fantasy Targets Fantasy Targets
ID abmbpdhchbhhecbjhnhlnobeiihhjfpa
URL Chính Thức https://chrome.google.com/webstore/detail/fantasy-targets/abmbpdhchbhhecbjhnhlnobeiihhjfpa
Mô tả Enhances the ESPN fantasy football website with additional information, such as player numbers and receiver targets.
Kích Thước Tệp 450 KB
Số Lần Cài Đặt 3,000
Phiên Bản Hiện Tại 0.1.3
Cập Nhật Lần Cuối 2017-09-19
Ngày Phát Hành 2017-09-19
Đánh Giá 4.39/5 Tổng số 44 Đánh Giá
Nhà Phát Triển tcbeutler
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/tcbeutler/FantasyTargets
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fantasy Targets",
    "version": "0.1.3",
    "manifest_version": 2,
    "description": "Enhances the ESPN fantasy football website with additional information, such as player numbers and receiver targets.",
    "permissions": [
        "http:\/\/www.espn.com\/nfl\/*",
        "http:\/\/games.espn.com\/*",
        "https:\/\/games.espn.com\/*",
        "http:\/\/*.fantasypros.com\/*",
        "https:\/\/*.fantasypros.com\/*",
        "webRequest",
        "storage"
    ],
    "icons": {
        "48": "fantasyTargetsLogo-48.png",
        "128": "fantasyTargetsLogo-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/games.espn.com\/ffl\/*",
                "https:\/\/games.espn.com\/ffl\/*"
            ],
            "js": [
                "lib\/ender.min.js",
                "fantasyProsStatsProvider.js",
                "espnStatsProvider.js",
                "nflScheduleUtils.js",
                "domController.js",
                "contentscript.js"
            ]
        }
    ]
}