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 с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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
URL страницы помощи 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\/*"
    ]
}