Skool Focus
A browser extension that helps you focus while you use the skool.com website.
What is Skool Focus?
Skool Focus is a Chrome extension developed by F_x64b, and its main feature is "A browser extension that helps you focus while you use the skool.com website.".
Extension Screenshots
Download Skool Focus Extension CRX File
Download Skool Focus extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Skool Focus |
ID | nchfffdkbhafombnfcpladflclakmdmo |
Official URL | https://chromewebstore.google.com/detail/skool-focus/nchfffdkbhafombnfcpladflclakmdmo |
Description | A browser extension that helps you focus while you use the skool.com website. |
File Size | 52.77 KB |
Installation Count | 137 |
Current Version | 1.5 |
Last Updated | 2023-11-29 |
Publish Date | 2023-10-22 |
Rating | 5.00/5 Total 3 Ratings |
Developer | F_x64b |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/Fx64b/skool-focus-extension |
Privacy Policy Page URL | https://github.com/Fx64b/skool-focus-extension/blob/main/PRIVACY.md |
Supported Languages | 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" } } |