Skool Focus

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

Co to jest Skool Focus?

Skool Focus to rozszerzenie Chrome opracowane przez F_x64b, a jego główną funkcją jest „A browser extension that helps you focus while you use the skool.com website.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Skool Focus

Pobierz pliki rozszerzeń Skool Focus w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Skool Focus Skool Focus
ID nchfffdkbhafombnfcpladflclakmdmo
Oficjalny URL https://chromewebstore.google.com/detail/skool-focus/nchfffdkbhafombnfcpladflclakmdmo
Opis A browser extension that helps you focus while you use the skool.com website.
Rozmiar pliku 52.77 KB
Liczba instalacji 137
Aktualna Wersja 1.5
Ostatnia Aktualizacja 2023-11-29
Data Publikacji 2023-10-22
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper F_x64b
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/Fx64b/skool-focus-extension
Adres URL Strony Polityki Prywatności https://github.com/Fx64b/skool-focus-extension/blob/main/PRIVACY.md
Obsługiwane Języki 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"
    }
}