World Cup Spoiler Blocker

Block World Cup 2018 Scores on ESPN or Fox Sports

Hvad er World Cup Spoiler Blocker?

World Cup Spoiler Blocker er en Chrome-udvidelse udviklet af http://quantfive.org, og dens hovedfunktion er "Block World Cup 2018 Scores on ESPN or Fox Sports".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download World Cup Spoiler Blocker-udvidelses-CRX-fil

Download World Cup Spoiler Blocker-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn World Cup Spoiler Blocker World Cup Spoiler Blocker
ID aghafhfennhbflakcpkhhgkkbgjccnml
Officiel URL https://chrome.google.com/webstore/detail/world-cup-spoiler-blocker/aghafhfennhbflakcpkhhgkkbgjccnml
Beskrivelse Block World Cup 2018 Scores on ESPN or Fox Sports
Filstørrelse 13.65 KB
Antal Installationer 21
Nuværende Version 1.2.2
Senest Opdateret 2018-06-24
Udgivelsesdato 2018-06-24
Bedømmelse 3.33/5 Samlet 3 Bedømmelser
Udvikler http://quantfive.org
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://www.quantfive.org/portfolio
Understøttede Sprog 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
        }
    ]
}