sflp

Provides a calendar of basketball games, and links to watch them. Upon selecting a game the user is redirected to the League Pass…

Что такое sflp?

sflp - это расширение Chrome, разработанное rsmuin, и его основная функция - "Provides a calendar of basketball games, and links to watch them. Upon selecting a game the user is redirected to the League Pass…".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения sflp

Скачайте файлы расширений sflp в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        Provides a calendar of basketball games, and links to watch them. Upon selecting a game the user is redirected to the League Pass game feed in a new tab, and any scores or spoilers are hidden from view using CSS changes.                    

Основная информация о расширении

Название sflp sflp
ID bbjfddlngfndbghjpfhabigcnckpnlki
Официальный URL https://chromewebstore.google.com/detail/sflp/bbjfddlngfndbghjpfhabigcnckpnlki
Описание Provides a calendar of basketball games, and links to watch them. Upon selecting a game the user is redirected to the League Pass…
Размер файла 807 KB
Количество установок 39
Текущая Версия 0.13
Последнее Обновление 2023-10-24
Дата публикации 2019-10-25
Рейтинг 5.00/5 Всего 2 оценок
Разработчик rsmuin
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "browser_action": {
        "default_icon": "bball.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "css": [
                "nbapage.css"
            ],
            "js": [
                "jquery191.js",
                "jquery111.js",
                "obj.js",
                "popup.js"
            ],
            "matches": [
                "http:\/\/www.nba.com\/*",
                "https:\/\/www.nba.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "bball.png",
        "16": "bball.png",
        "48": "bball.png"
    },
    "manifest_version": 2,
    "name": "sflp",
    "permissions": [
        "activeTab"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.13"
}