World Cup Spoiler Blocker
Block World Cup 2018 Scores on ESPN or Fox Sports
World Cup Spoiler Blocker là gì?
World Cup Spoiler Blocker là một tiện ích mở rộng Chrome được phát triển bởi http://quantfive.org, và tính năng chính của nó là "Block World Cup 2018 Scores on ESPN or Fox Sports".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng World Cup Spoiler Blocker
Tải xuống các tệp mở rộng World Cup Spoiler Blocker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | aghafhfennhbflakcpkhhgkkbgjccnml |
URL Chính Thức | https://chrome.google.com/webstore/detail/world-cup-spoiler-blocker/aghafhfennhbflakcpkhhgkkbgjccnml |
Mô tả | Block World Cup 2018 Scores on ESPN or Fox Sports |
Kích Thước Tệp | 13.65 KB |
Số Lần Cài Đặt | 21 |
Phiên Bản Hiện Tại | 1.2.2 |
Cập Nhật Lần Cuối | 2018-06-24 |
Ngày Phát Hành | 2018-06-24 |
Đánh Giá | 3.33/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | http://quantfive.org |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.quantfive.org/portfolio |
Ngôn Ngữ Được Hỗ Trợ | 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 } ] } |