ESPN NFL Score Hider

Hides the scores of NFL games for certain teams until you want to see them

ESPN NFL Score Hider란 무엇입니까?

ESPN NFL Score Hider은(는) James_Hynes에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hides the scores of NFL games for certain teams until you want to see them"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

ESPN NFL Score Hider 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Hide teams from ESPN's NFLscoreboard (http://www.espn.com/nfl/scoreboard).

Select any number of teams, and their scores will appear whited out on ESPN. Perfect for anyone who can't watch their team play live but still want to follow the league.

Leave a review and please don't hesitate to send any feedback/change requests.                    

확장 프로그램 기본 정보

이름 ESPN NFL Score Hider ESPN NFL Score Hider
ID hmmcjkppblmgkjbkjkielpomhpbdokae
공식 URL https://chromewebstore.google.com/detail/espn-nfl-score-hider/hmmcjkppblmgkjbkjkielpomhpbdokae
설명 Hides the scores of NFL games for certain teams until you want to see them
파일 크기 53.7 KB
설치 횟수 29
현재 버전 0.1.2
최근 업데이트 2018-02-22
출시 날짜 2018-02-21
개발자 James_Hynes
이메일 jameshynesdevelop@gmail.com
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ESPN NFL Score Hider",
    "description": "Hides the scores of NFL games for certain teams until you want to see them",
    "version": "0.1.2",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.espn.com\/nfl\/scoreboard\/*"
            ],
            "css": [
                "inject.css"
            ],
            "js": [
                "lib\/jquery-3.3.1.min.js",
                "inject.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "res\/icon.png"
    },
    "icons": {
        "16": "res\/icon16.png",
        "32": "res\/icon32.png",
        "48": "res\/icon48.png",
        "128": "res\/icon.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}