Skool Focus

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

Vad är Skool Focus?

Skool Focus är en Chrome-tillägg utvecklad av F_x64b, och dess huvudfunktion är "A browser extension that helps you focus while you use the skool.com website.".

Tilläggsskärmbilder

screenshot

Ladda ner Skool Focus-förlängningens CRX-fil

Ladda ner Skool Focus-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Skool Focus Skool Focus
ID nchfffdkbhafombnfcpladflclakmdmo
Officiell webbadress https://chromewebstore.google.com/detail/skool-focus/nchfffdkbhafombnfcpladflclakmdmo
Beskrivning A browser extension that helps you focus while you use the skool.com website.
Filstorlek 52.77 KB
Antal Installationer 137
Aktuell Version 1.5
Senast Uppdaterad 2023-11-29
Publiceringsdatum 2023-10-22
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare F_x64b
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/Fx64b/skool-focus-extension
URL till Sekretesspolicy Sidan https://github.com/Fx64b/skool-focus-extension/blob/main/PRIVACY.md
Stödda Språk 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"
    }
}