Skool Focus

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

Apa itu Skool Focus?

Skool Focus adalah ekstensi Chrome yang dikembangkan oleh F_x64b, dan fitur utamanya adalah "A browser extension that helps you focus while you use the skool.com website.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Skool Focus

Unduh file ekstensi Skool Focus dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Skool Focus Skool Focus
ID nchfffdkbhafombnfcpladflclakmdmo
URL Resmi https://chromewebstore.google.com/detail/skool-focus/nchfffdkbhafombnfcpladflclakmdmo
Deskripsi A browser extension that helps you focus while you use the skool.com website.
Ukuran File 52.77 KB
Jumlah Instalasi 137
Versi Saat Ini 1.5
Terakhir Diperbarui 2023-11-29
Tanggal Publikasi 2023-10-22
Penilaian 5.00/5 Total 3 Penilaian
Pengembang F_x64b
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/Fx64b/skool-focus-extension
URL Halaman Kebijakan Privasi https://github.com/Fx64b/skool-focus-extension/blob/main/PRIVACY.md
Bahasa yang Didukung 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"
    }
}