World Cup Spoiler Blocker

Block World Cup 2018 Scores on ESPN or Fox Sports

Wat is World Cup Spoiler Blocker?

World Cup Spoiler Blocker is een Chrome-extensie ontwikkeld door http://quantfive.org, en de belangrijkste functie is "Block World Cup 2018 Scores on ESPN or Fox Sports".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie World Cup Spoiler Blocker

Download World Cup Spoiler Blocker-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam World Cup Spoiler Blocker World Cup Spoiler Blocker
ID aghafhfennhbflakcpkhhgkkbgjccnml
Officiële URL https://chrome.google.com/webstore/detail/world-cup-spoiler-blocker/aghafhfennhbflakcpkhhgkkbgjccnml
Beschrijving Block World Cup 2018 Scores on ESPN or Fox Sports
Bestandsgrootte 13.65 KB
Aantal Installaties 21
Huidige Versie 1.2.2
Laatst Bijgewerkt 2018-06-24
Publicatiedatum 2018-06-24
Beoordeling 3.33/5 Totaal 3 Beoordelingen
Ontwikkelaar http://quantfive.org
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://www.quantfive.org/portfolio
Ondersteunde Talen 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
        }
    ]
}