ESPN NFL Score Hider

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

Apa itu ESPN NFL Score Hider?

ESPN NFL Score Hider adalah ekstensi Chrome yang dikembangkan oleh James_Hynes, dan fitur utamanya adalah "Hides the scores of NFL games for certain teams until you want to see them".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi ESPN NFL Score Hider

Unduh file ekstensi ESPN NFL Score Hider dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama ESPN NFL Score Hider ESPN NFL Score Hider
ID hmmcjkppblmgkjbkjkielpomhpbdokae
URL Resmi https://chromewebstore.google.com/detail/espn-nfl-score-hider/hmmcjkppblmgkjbkjkielpomhpbdokae
Deskripsi Hides the scores of NFL games for certain teams until you want to see them
Ukuran File 53.7 KB
Jumlah Instalasi 29
Versi Saat Ini 0.1.2
Terakhir Diperbarui 2018-02-22
Tanggal Publikasi 2018-02-21
Pengembang James_Hynes
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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
    }
}