Skool Focus

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

Was ist Skool Focus?

Skool Focus ist eine Chrome-Erweiterung, die von F_x64b entwickelt wurde, und ihr Hauptmerkmal ist "A browser extension that helps you focus while you use the skool.com website.".

Erweiterungsscreenshots

screenshot

Skool Focus-Erweiterungs-CRX-Datei herunterladen

Laden Sie Skool Focus-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Skool Focus Skool Focus
ID nchfffdkbhafombnfcpladflclakmdmo
Offizielle URL https://chromewebstore.google.com/detail/skool-focus/nchfffdkbhafombnfcpladflclakmdmo
Beschreibung A browser extension that helps you focus while you use the skool.com website.
Dateigröße 52.77 KB
Installationsanzahl 137
Aktuelle Version 1.5
Letztes Update 2023-11-29
Veröffentlichungsdatum 2023-10-22
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler F_x64b
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/Fx64b/skool-focus-extension
URL der Datenschutzrichtlinien-Seite https://github.com/Fx64b/skool-focus-extension/blob/main/PRIVACY.md
Unterstützte Sprachen 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"
    }
}