Skool Focus

A browser extension that helps you focus while you use the skool.com website.

Что такое Skool Focus?

Skool Focus - это расширение Chrome, разработанное F_x64b, и его основная функция - "A browser extension that helps you focus while you use the skool.com website.".

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

screenshot

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

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

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

                        A simple extension that helps you focus on the classroom courses on the skool.com website.

With an easy to use popup you can hide various distracting elements from the site like notification badges or the community feed.                    

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

Название Skool Focus Skool Focus
ID nchfffdkbhafombnfcpladflclakmdmo
Официальный URL https://chromewebstore.google.com/detail/skool-focus/nchfffdkbhafombnfcpladflclakmdmo
Описание A browser extension that helps you focus while you use the skool.com website.
Размер файла 52.77 KB
Количество установок 137
Текущая Версия 1.5
Последнее Обновление 2023-11-29
Дата публикации 2023-10-22
Рейтинг 5.00/5 Всего 3 оценок
Разработчик F_x64b
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/Fx64b/skool-focus-extension
URL страницы политики конфиденциальности https://github.com/Fx64b/skool-focus-extension/blob/main/PRIVACY.md
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Skool Focus",
    "version": "1.5",
    "author": "Fx64b",
    "description": "A browser extension that helps you focus while you use the skool.com website.",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "background": {
        "service_worker": "serviceWorker.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.skool.com\/*"
            ],
            "js": [
                "browser-polyfill.min.js",
                "content.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html"
    }
}