Fantasy Points Browser Extension

League import bridge for FantasyPoints.com #ScoreMore.

Fantasy Points Browser Extension란 무엇입니까?

Fantasy Points Browser Extension은(는) https://fantasypoints.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "League import bridge for FantasyPoints.com #ScoreMore."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Fantasy Points Browser Extension 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Fantasy Points Browser Extension Fantasy Points Browser Extension
ID acacbbhfboldggccadfeopfbliabpock
공식 URL https://chromewebstore.google.com/detail/fantasy-points-browser-ex/acacbbhfboldggccadfeopfbliabpock
설명 League import bridge for FantasyPoints.com #ScoreMore.
파일 크기 46.38 KB
설치 횟수 2,771
현재 버전 2.0.1
최근 업데이트 2023-09-18
출시 날짜 2021-08-22
개발자 https://fantasypoints.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.fantasypoints.com
도움말 페이지 URL https://support.fantasypoints.com
개인정보 보호 정책 페이지 URL https://www.fantasypoints.com/privacy
지원되는 언어 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';"
    }
}