World Cup Spoiler Blocker
Block World Cup 2018 Scores on ESPN or Fox Sports
什么是World Cup Spoiler Blocker?
World Cup Spoiler Blocker是由http://quantfive.org开发的Chrome扩展程序,该扩展的主要功能是“Block World Cup 2018 Scores on ESPN or Fox Sports”。
扩展截图
下载World Cup Spoiler Blocker扩展crx文件
下载World Cup Spoiler Blocker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | |
ID | aghafhfennhbflakcpkhhgkkbgjccnml |
官方URL | https://chrome.google.com/webstore/detail/world-cup-spoiler-blocker/aghafhfennhbflakcpkhhgkkbgjccnml |
简介 | Block World Cup 2018 Scores on ESPN or Fox Sports |
文件大小 | 13.65 KB |
安装次数 | 21 |
当前版本 | 1.2.2 |
更新时间 | 2018-06-24 |
上架时间 | 2018-06-24 |
评分 | 3.33/5 共3次评分 |
开发者 | http://quantfive.org |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://www.quantfive.org/portfolio |
支持的语言 | 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 } ] } |