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ファイルをダウンロード

World Cup Spoiler Blocker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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
        }
    ]
}