Fantasy Points Browser Extension

League import bridge for FantasyPoints.com #ScoreMore.

Fantasy Points Browser Extension là gì?

Fantasy Points Browser Extension là một tiện ích mở rộng Chrome được phát triển bởi https://fantasypoints.com, và tính năng chính của nó là "League import bridge for FantasyPoints.com #ScoreMore.".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Fantasy Points Browser Extension 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

                        The Fantasy Points Browser Extension serves as an authentication bridge between your fantasy leagues and Fantasy Points. Once installed you can import leagues from ESPN, CBS, NFL and more at FantasyPoints.com.                    

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

Tên Fantasy Points Browser Extension Fantasy Points Browser Extension
ID acacbbhfboldggccadfeopfbliabpock
URL Chính Thức https://chromewebstore.google.com/detail/fantasy-points-browser-ex/acacbbhfboldggccadfeopfbliabpock
Mô tả League import bridge for FantasyPoints.com #ScoreMore.
Kích Thước Tệp 46.38 KB
Số Lần Cài Đặt 2,771
Phiên Bản Hiện Tại 2.0.1
Cập Nhật Lần Cuối 2023-09-18
Ngày Phát Hành 2021-08-22
Nhà Phát Triển https://fantasypoints.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.fantasypoints.com
URL Trang Trợ Giúp https://support.fantasypoints.com
URL Trang Chính Sách Bảo Mật https://www.fantasypoints.com/privacy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fantasy Points Browser Extension",
    "description": "League import bridge for FantasyPoints.com #ScoreMore.",
    "version": "2.0.1",
    "short_name": "FPBE",
    "homepage_url": "https:\/\/www.fantasypoints.com",
    "manifest_version": 3,
    "icons": {
        "16": "icon\/16.png",
        "19": "icon\/19.png",
        "32": "icon\/38.png",
        "38": "icon\/38.png",
        "48": "icon\/48.png",
        "128": "icon\/128.png"
    },
    "action": {
        "default_popup": "src\/popup.html",
        "default_title": "Fantasy Points",
        "default_icon": {
            "19": "icon\/19.png",
            "38": "icon\/38.png"
        }
    },
    "background": {
        "service_worker": "src\/background.js"
    },
    "permissions": [
        "scripting",
        "tabs",
        "cookies",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*.nfl.com\/*",
        "*:\/\/*.espn.com\/*",
        "*:\/\/*.cbssports.com\/*",
        "http:\/\/localhost\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.nfl.com\/*",
                "*:\/\/*.espn.com\/*",
                "*:\/\/*.cbssports.com\/*",
                "*:\/\/*.fantasypoints.com\/*"
            ],
            "js": [
                "src\/content-script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "img\/logo-wordmark-gray-black.svg"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval' http:\/\/localhost:*; object-src 'self';"
    }
}