World Cup Spoiler Blocker

Block World Cup 2018 Scores on ESPN or Fox Sports

Cos'è World Cup Spoiler Blocker?

World Cup Spoiler Blocker è un'estensione di Chrome sviluppata da http://quantfive.org, e la sua funzione principale è "Block World Cup 2018 Scores on ESPN or Fox Sports".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione World Cup Spoiler Blocker

Scarica i file di estensione World Cup Spoiler Blocker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome World Cup Spoiler Blocker World Cup Spoiler Blocker
ID aghafhfennhbflakcpkhhgkkbgjccnml
URL Ufficiale https://chrome.google.com/webstore/detail/world-cup-spoiler-blocker/aghafhfennhbflakcpkhhgkkbgjccnml
Descrizione Block World Cup 2018 Scores on ESPN or Fox Sports
Dimensione del File 13.65 KB
Conteggio Installazioni 21
Versione Corrente 1.2.2
Ultimo Aggiornamento 2018-06-24
Data di Pubblicazione 2018-06-24
Valutazione 3.33/5 Totale 3 Valutazioni
Sviluppatore http://quantfive.org
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.quantfive.org/portfolio
Lingue Supportate 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
        }
    ]
}