Skool Focus
A browser extension that helps you focus while you use the skool.com website.
Cos'è Skool Focus?
Skool Focus è un'estensione di Chrome sviluppata da F_x64b, e la sua funzione principale è "A browser extension that helps you focus while you use the skool.com website.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Skool Focus
Scarica i file di estensione Skool Focus in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Skool Focus |
ID | nchfffdkbhafombnfcpladflclakmdmo |
URL Ufficiale | https://chromewebstore.google.com/detail/skool-focus/nchfffdkbhafombnfcpladflclakmdmo |
Descrizione | A browser extension that helps you focus while you use the skool.com website. |
Dimensione del File | 52.77 KB |
Conteggio Installazioni | 137 |
Versione Corrente | 1.5 |
Ultimo Aggiornamento | 2023-11-29 |
Data di Pubblicazione | 2023-10-22 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | F_x64b |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/Fx64b/skool-focus-extension |
URL della Pagina della Politica sulla Privacy | https://github.com/Fx64b/skool-focus-extension/blob/main/PRIVACY.md |
Lingue Supportate | 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" } } |