World Cup Spoiler Blocker

Block World Cup 2018 Scores on ESPN or Fox Sports

What is World Cup Spoiler Blocker?

World Cup Spoiler Blocker is a Chrome extension developed by http://quantfive.org, and its main feature is "Block World Cup 2018 Scores on ESPN or Fox Sports".

Extension Screenshots

screenshot
screenshot
screenshot

Download World Cup Spoiler Blocker Extension CRX File

Download World Cup Spoiler Blocker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name World Cup Spoiler Blocker World Cup Spoiler Blocker
ID aghafhfennhbflakcpkhhgkkbgjccnml
Official URL https://chrome.google.com/webstore/detail/world-cup-spoiler-blocker/aghafhfennhbflakcpkhhgkkbgjccnml
Description Block World Cup 2018 Scores on ESPN or Fox Sports
File Size 13.65 KB
Installation Count 21
Current Version 1.2.2
Last Updated 2018-06-24
Publish Date 2018-06-24
Rating 3.33/5 Total 3 Ratings
Developer http://quantfive.org
Email [email protected]
Payment Type free
Extension Website https://www.quantfive.org/portfolio
Supported Languages 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
        }
    ]
}