NBA Close Games

Highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off.

ما هو NBA Close Games؟

NBA Close Games هو إضافة Chrome تم تطويرها بواسطة marcnewport، والميزة الرئيسية لها هي "Highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off.".

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

screenshot

تحميل ملف CRX للإضافة NBA Close Games

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

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

                        A chrome extension for http://watch.nba.com that highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off.                    

معلومات أساسية عن التمديد

الاسم NBA Close Games NBA Close Games
ID fjjgljnmaijpilbcgbedemcnpffjkaaj
عنوان URL الرسمي https://chrome.google.com/webstore/detail/nba-close-games/fjjgljnmaijpilbcgbedemcnpffjkaaj
الوصف Highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off.
حجم الملف 17.44 KB
عدد التثبيتات 150
النسخة الحالية 2.2.1
آخر تحديث 2018-10-20
تاريخ النشر 2018-10-20
تقييم 4.67/5 مجموع تقييمات 3
المطور marcnewport
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة http://marcnewport.com
عنوان صفحة المساعدة https://github.com/marcnewport/nba-close-games/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NBA Close Games",
    "description": "Highlights if a game was close based on your settings. Useful if you don't watch the games live and have spoilers turned off.",
    "version": "2.2.1",
    "options_page": "options.html",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "icons": [
            "icons\/icon.png",
            "icons\/icon-disabled.png"
        ],
        "default_icon": "icons\/icon-disabled.png"
    },
    "background": {
        "scripts": [
            "js\/background.js",
            "js\/utils.js",
            "js\/options.js",
            "js\/manipulate.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/watch.nba.com\/*"
            ],
            "css": [
                "css\/manipulate.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "https:\/\/stats.nba.com\/*",
        "https:\/\/data.nba.net\/*",
        "https:\/\/wikihoops.com\/*"
    ]
}