World Cup Spoiler Blocker

Block World Cup 2018 Scores on ESPN or Fox Sports

World Cup Spoiler Blocker란 무엇입니까?

World Cup Spoiler Blocker은(는) http://quantfive.org에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Block World Cup 2018 Scores on ESPN or Fox Sports"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

World Cup Spoiler Blocker 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Want to watch the World Cup on replay but can't avoid it? BLOCK the scores on major sites like ESPN and Fox Sports so you can go find the replay of the game and watch it without revealing the scores.

Click on the extension to undo the blocking.                    

확장 프로그램 기본 정보

이름 World Cup Spoiler Blocker World Cup Spoiler Blocker
ID aghafhfennhbflakcpkhhgkkbgjccnml
공식 URL https://chrome.google.com/webstore/detail/world-cup-spoiler-blocker/aghafhfennhbflakcpkhhgkkbgjccnml
설명 Block World Cup 2018 Scores on ESPN or Fox Sports
파일 크기 13.65 KB
설치 횟수 21
현재 버전 1.2.2
최근 업데이트 2018-06-24
출시 날짜 2018-06-24
평점 3.33/5 총 3 개의 평점
개발자 http://quantfive.org
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.quantfive.org/portfolio
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "World Cup Spoiler Blocker",
    "short_name": "WC Spoilers",
    "description": "Block World Cup 2018 Scores on ESPN or Fox Sports",
    "version": "1.2.2",
    "author": "Quant Five",
    "browser_action": [],
    "permissions": [
        "background",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.espn.com\/*",
                "https:\/\/*.foxsportsgo.com\/*",
                "https:\/\/*.foxsports.com\/*"
            ],
            "js": [
                "main.js"
            ],
            "css": [
                "main.css"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}