Skool Focus
A browser extension that helps you focus while you use the skool.com website.
Wat is Skool Focus?
Skool Focus is een Chrome-extensie ontwikkeld door F_x64b, en de belangrijkste functie is "A browser extension that helps you focus while you use the skool.com website.".
Extensie Screenshots
Download het CRX-bestand van de extensie Skool Focus
Download Skool Focus-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Skool Focus |
ID | nchfffdkbhafombnfcpladflclakmdmo |
Officiële URL | https://chromewebstore.google.com/detail/skool-focus/nchfffdkbhafombnfcpladflclakmdmo |
Beschrijving | A browser extension that helps you focus while you use the skool.com website. |
Bestandsgrootte | 52.77 KB |
Aantal Installaties | 137 |
Huidige Versie | 1.5 |
Laatst Bijgewerkt | 2023-11-29 |
Publicatiedatum | 2023-10-22 |
Beoordeling | 5.00/5 Totaal 3 Beoordelingen |
Ontwikkelaar | F_x64b |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/Fx64b/skool-focus-extension |
URL van de Privacybeleid Pagina | https://github.com/Fx64b/skool-focus-extension/blob/main/PRIVACY.md |
Ondersteunde Talen | 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" } } |