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 هو إضافة Chrome تم تطويرها بواسطة James_Hynes، والميزة الرئيسية لها هي "Hides the scores of NFL games for certain teams until you want to see them".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة ESPN NFL Score Hider

قم بتنزيل ملفات الامتداد ESPN NFL Score Hider بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
    }
}