Skool Focus

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

Hvad er Skool Focus?

Skool Focus er en Chrome-udvidelse udviklet af F_x64b, og dens hovedfunktion er "A browser extension that helps you focus while you use the skool.com website.".

Udvidelsesskærmbilleder

screenshot

Download Skool Focus-udvidelses-CRX-fil

Download Skool Focus-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Skool Focus Skool Focus
ID nchfffdkbhafombnfcpladflclakmdmo
Officiel URL https://chromewebstore.google.com/detail/skool-focus/nchfffdkbhafombnfcpladflclakmdmo
Beskrivelse A browser extension that helps you focus while you use the skool.com website.
Filstørrelse 52.77 KB
Antal Installationer 137
Nuværende Version 1.5
Senest Opdateret 2023-11-29
Udgivelsesdato 2023-10-22
Bedømmelse 5.00/5 Samlet 3 Bedømmelser
Udvikler F_x64b
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/Fx64b/skool-focus-extension
URL til Fortrolighedspolitik Side https://github.com/Fx64b/skool-focus-extension/blob/main/PRIVACY.md
Understøttede Sprog 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"
    }
}