World Cup Spoiler Blocker
Block World Cup 2018 Scores on ESPN or Fox Sports
Co to jest World Cup Spoiler Blocker?
World Cup Spoiler Blocker to rozszerzenie Chrome opracowane przez http://quantfive.org, a jego główną funkcją jest „Block World Cup 2018 Scores on ESPN or Fox Sports”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia World Cup Spoiler Blocker
Pobierz pliki rozszerzeń World Cup Spoiler Blocker w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | aghafhfennhbflakcpkhhgkkbgjccnml |
Oficjalny URL | https://chrome.google.com/webstore/detail/world-cup-spoiler-blocker/aghafhfennhbflakcpkhhgkkbgjccnml |
Opis | Block World Cup 2018 Scores on ESPN or Fox Sports |
Rozmiar pliku | 13.65 KB |
Liczba instalacji | 21 |
Aktualna Wersja | 1.2.2 |
Ostatnia Aktualizacja | 2018-06-24 |
Data Publikacji | 2018-06-24 |
Ocena | 3.33/5 Łącznie 3 Oceny |
Deweloper | http://quantfive.org |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://www.quantfive.org/portfolio |
Obsługiwane Języki | 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 } ] } |