World Cup Spoiler Blocker
Block World Cup 2018 Scores on ESPN or Fox Sports
Was ist World Cup Spoiler Blocker?
World Cup Spoiler Blocker ist eine Chrome-Erweiterung, die von http://quantfive.org entwickelt wurde, und ihr Hauptmerkmal ist "Block World Cup 2018 Scores on ESPN or Fox Sports".
Erweiterungsscreenshots
World Cup Spoiler Blocker-Erweiterungs-CRX-Datei herunterladen
Laden Sie World Cup Spoiler Blocker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | aghafhfennhbflakcpkhhgkkbgjccnml |
Offizielle URL | https://chrome.google.com/webstore/detail/world-cup-spoiler-blocker/aghafhfennhbflakcpkhhgkkbgjccnml |
Beschreibung | Block World Cup 2018 Scores on ESPN or Fox Sports |
Dateigröße | 13.65 KB |
Installationsanzahl | 21 |
Aktuelle Version | 1.2.2 |
Letztes Update | 2018-06-24 |
Veröffentlichungsdatum | 2018-06-24 |
Bewertung | 3.33/5 Insgesamt 3 Bewertungen |
Entwickler | http://quantfive.org |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://www.quantfive.org/portfolio |
Unterstützte Sprachen | 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 } ] } |