World Cup Spoiler Blocker
Block World Cup 2018 Scores on ESPN or Fox Sports
Qu'est-ce que World Cup Spoiler Blocker ?
World Cup Spoiler Blocker est une extension Chrome développée par http://quantfive.org, et sa fonction principale est "Block World Cup 2018 Scores on ESPN or Fox Sports".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension World Cup Spoiler Blocker
Téléchargez les fichiers d'extension World Cup Spoiler Blocker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | aghafhfennhbflakcpkhhgkkbgjccnml |
URL Officiel | https://chrome.google.com/webstore/detail/world-cup-spoiler-blocker/aghafhfennhbflakcpkhhgkkbgjccnml |
Description | Block World Cup 2018 Scores on ESPN or Fox Sports |
Taille du Fichier | 13.65 KB |
Nombre d'Installations | 21 |
Version Actuelle | 1.2.2 |
Dernière Mise à Jour | 2018-06-24 |
Date de Publication | 2018-06-24 |
Évaluation | 3.33/5 Total 3 Évaluations |
Développeur | http://quantfive.org |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://www.quantfive.org/portfolio |
Langues Prises en Charge | 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 } ] } |