LineupExperts

Get expert advice for your fantasy teams.

LineupExperts란 무엇입니까?

LineupExperts은(는) LineupExperts.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get expert advice for your fantasy teams."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

LineupExperts 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Our browser extension makes it easier to integrate with your preferred fantasy platforms like ESPN and Yahoo.  It can also give you the edge during the draft. It tracks the draft while communicating picks so that our platform can offer you real-time insights on the draft including our recommended draft picks round-by-round.                    

확장 프로그램 기본 정보

이름 LineupExperts LineupExperts
ID gcniklopcjcohhkeldmfbjocjmngakne
공식 URL https://chromewebstore.google.com/detail/lineupexperts/gcniklopcjcohhkeldmfbjocjmngakne
설명 Get expert advice for your fantasy teams.
파일 크기 229 KB
설치 횟수 3,837
현재 버전 3
최근 업데이트 2023-09-01
출시 날짜 2023-05-24
평점 5.00/5 총 3 개의 평점
개발자 LineupExperts.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.lineupexperts.com/
도움말 페이지 URL https://www.lineupexperts.com/Contact-Us
개인정보 보호 정책 페이지 URL https://www.lineupexperts.com/privacy.php
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LineupExperts",
    "description": "Get expert advice for your fantasy teams.",
    "manifest_version": 3,
    "version": "3",
    "author": "LineupExperts",
    "homepage_url": "https:\/\/www.lineupexperts.com",
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "64": "icons\/icon-64.png",
        "96": "icons\/icon-96.png",
        "128": "icons\/icon-128.png"
    },
    "background": {
        "service_worker": "worker.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.espn.com\/*",
                "*:\/\/*.fantrax.com\/*",
                "*:\/\/*.cbssports.com\/*",
                "*:\/\/*.fantasysports.yahoo.com\/*",
                "*:\/\/*.nfl.com\/*",
                "*:\/\/*.fleaflicker.com\/*",
                "*:\/\/*.sleeper.com\/*",
                "*:\/\/*.myfantasyleague.com\/*",
                "*:\/\/*.myffpc.com\/*",
                "*:\/\/*.rtsports.com\/*",
                "*:\/\/*.onroto.com\/*",
                "*:\/\/*.shgn.com\/*"
            ],
            "js": [
                "browser-polyfill.js",
                "lodash.js",
                "ping.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*.lineupexperts.com\/*"
            ],
            "js": [
                "browser-polyfill.js",
                "lodash.js",
                "ping.js",
                "cs_lue.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "page_console_intercept.js",
                "page_console_lue.js",
                "page_lue.js",
                "page_lue_ready.js",
                "page_console_yahoo.js",
                "page_cbssports.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*.lineupexperts.com\/*",
        "*:\/\/*.espn.com\/*",
        "*:\/\/*.fantrax.com\/*",
        "*:\/\/*.yahoo.com\/*",
        "*:\/\/*.yahooapis.com\/*",
        "*:\/\/*.cbssports.com\/*",
        "*:\/\/*.nfl.com\/*",
        "*:\/\/*.fleaflicker.com\/*",
        "*:\/\/*.sleeper.com\/*",
        "*:\/\/*.sleeper.app\/*",
        "*:\/\/*.myfantasyleague.com\/*",
        "*:\/\/*.myffpc.com\/*",
        "*:\/\/*.rtsports.com\/*",
        "*:\/\/*.onroto.com\/*",
        "*:\/\/*.shgn.com\/*"
    ],
    "permissions": [
        "storage",
        "alarms",
        "cookies"
    ]
}