World Cup Spoiler Blocker
Block World Cup 2018 Scores on ESPN or Fox Sports
Apa itu World Cup Spoiler Blocker?
World Cup Spoiler Blocker adalah ekstensi Chrome yang dikembangkan oleh http://quantfive.org, dan fitur utamanya adalah "Block World Cup 2018 Scores on ESPN or Fox Sports".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi World Cup Spoiler Blocker
Unduh file ekstensi World Cup Spoiler Blocker dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | |
ID | aghafhfennhbflakcpkhhgkkbgjccnml |
URL Resmi | https://chrome.google.com/webstore/detail/world-cup-spoiler-blocker/aghafhfennhbflakcpkhhgkkbgjccnml |
Deskripsi | Block World Cup 2018 Scores on ESPN or Fox Sports |
Ukuran File | 13.65 KB |
Jumlah Instalasi | 21 |
Versi Saat Ini | 1.2.2 |
Terakhir Diperbarui | 2018-06-24 |
Tanggal Publikasi | 2018-06-24 |
Penilaian | 3.33/5 Total 3 Penilaian |
Pengembang | http://quantfive.org |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://www.quantfive.org/portfolio |
Bahasa yang Didukung | 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 } ] } |