World Cup Spoiler Blocker

Block World Cup 2018 Scores on ESPN or Fox Sports

Co je World Cup Spoiler Blocker?

World Cup Spoiler Blocker je rozšíření Chrome vyvinuté http://quantfive.org, a jeho hlavní funkcí je „Block World Cup 2018 Scores on ESPN or Fox Sports“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření World Cup Spoiler Blocker

Stáhněte si soubory rozšíření World Cup Spoiler Blocker ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název World Cup Spoiler Blocker World Cup Spoiler Blocker
ID aghafhfennhbflakcpkhhgkkbgjccnml
Oficiální URL https://chrome.google.com/webstore/detail/world-cup-spoiler-blocker/aghafhfennhbflakcpkhhgkkbgjccnml
Popis Block World Cup 2018 Scores on ESPN or Fox Sports
Velikost souboru 13.65 KB
Počet instalací 21
Aktuální Verze 1.2.2
Poslední Aktualizace 2018-06-24
Datum Vydání 2018-06-24
Hodnocení 3.33/5 Celkem 3 Hodnocení
Vývojář http://quantfive.org
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://www.quantfive.org/portfolio
Podporované Jazyky 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
        }
    ]
}