World Cup Spoiler Blocker
Block World Cup 2018 Scores on ESPN or Fox Sports
Vad är World Cup Spoiler Blocker?
World Cup Spoiler Blocker är en Chrome-tillägg utvecklad av http://quantfive.org, och dess huvudfunktion är "Block World Cup 2018 Scores on ESPN or Fox Sports".
Tilläggsskärmbilder
Ladda ner World Cup Spoiler Blocker-förlängningens CRX-fil
Ladda ner World Cup Spoiler Blocker-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | |
ID | aghafhfennhbflakcpkhhgkkbgjccnml |
Officiell webbadress | https://chrome.google.com/webstore/detail/world-cup-spoiler-blocker/aghafhfennhbflakcpkhhgkkbgjccnml |
Beskrivning | Block World Cup 2018 Scores on ESPN or Fox Sports |
Filstorlek | 13.65 KB |
Antal Installationer | 21 |
Aktuell Version | 1.2.2 |
Senast Uppdaterad | 2018-06-24 |
Publiceringsdatum | 2018-06-24 |
Betyg | 3.33/5 Totalt 3 Betyg |
Utvecklare | http://quantfive.org |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://www.quantfive.org/portfolio |
Stödda Språk | 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 } ] } |