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”。

擴展截圖

screenshot
screenshot
screenshot

下載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.                    

擴展基本資訊

名稱 World Cup Spoiler Blocker World Cup Spoiler Blocker
ID aghafhfennhbflakcpkhhgkkbgjccnml
官方網址 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
        }
    ]
}