ESPN NFL Score Hider

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

Was ist ESPN NFL Score Hider?

ESPN NFL Score Hider ist eine Chrome-Erweiterung, die von James_Hynes entwickelt wurde, und ihr Hauptmerkmal ist "Hides the scores of NFL games for certain teams until you want to see them".

Erweiterungsscreenshots

screenshot
screenshot

ESPN NFL Score Hider-Erweiterungs-CRX-Datei herunterladen

Laden Sie ESPN NFL Score Hider-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name ESPN NFL Score Hider ESPN NFL Score Hider
ID hmmcjkppblmgkjbkjkielpomhpbdokae
Offizielle URL https://chromewebstore.google.com/detail/espn-nfl-score-hider/hmmcjkppblmgkjbkjkielpomhpbdokae
Beschreibung Hides the scores of NFL games for certain teams until you want to see them
Dateigröße 53.7 KB
Installationsanzahl 29
Aktuelle Version 0.1.2
Letztes Update 2018-02-22
Veröffentlichungsdatum 2018-02-21
Entwickler James_Hynes
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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
    }
}