ESPN NFL Score Hider

Hides the scores of NFL games for certain teams until you want to see them

什么是ESPN NFL Score Hider?

ESPN NFL Score Hider是由James_Hynes开发的Chrome扩展程序,该扩展的主要功能是“Hides the scores of NFL games for certain teams until you want to see them”。

扩展截图

screenshot
screenshot

下载ESPN NFL Score Hider扩展crx文件

下载ESPN NFL Score Hider扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Hide teams from ESPN's NFLscoreboard (http://www.espn.com/nfl/scoreboard).

Select any number of teams, and their scores will appear whited out on ESPN. Perfect for anyone who can't watch their team play live but still want to follow the league.

Leave a review and please don't hesitate to send any feedback/change requests.                    

扩展基本信息

名称 ESPN NFL Score Hider ESPN NFL Score Hider
ID hmmcjkppblmgkjbkjkielpomhpbdokae
官方URL https://chromewebstore.google.com/detail/espn-nfl-score-hider/hmmcjkppblmgkjbkjkielpomhpbdokae
简介 Hides the scores of NFL games for certain teams until you want to see them
文件大小 53.7 KB
安装次数 29
当前版本 0.1.2
更新时间 2018-02-22
上架时间 2018-02-21
开发者 James_Hynes
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ESPN NFL Score Hider",
    "description": "Hides the scores of NFL games for certain teams until you want to see them",
    "version": "0.1.2",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.espn.com\/nfl\/scoreboard\/*"
            ],
            "css": [
                "inject.css"
            ],
            "js": [
                "lib\/jquery-3.3.1.min.js",
                "inject.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "res\/icon.png"
    },
    "icons": {
        "16": "res\/icon16.png",
        "32": "res\/icon32.png",
        "48": "res\/icon48.png",
        "128": "res\/icon.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}