Skool Focus
A browser extension that helps you focus while you use the skool.com website.
什么是Skool Focus?
Skool Focus是由F_x64b开发的Chrome扩展程序,该扩展的主要功能是“A browser extension that helps you focus while you use the skool.com website.”。
扩展截图
下载Skool Focus扩展crx文件
下载Skool Focus扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Skool Focus |
ID | nchfffdkbhafombnfcpladflclakmdmo |
官方URL | https://chromewebstore.google.com/detail/skool-focus/nchfffdkbhafombnfcpladflclakmdmo |
简介 | A browser extension that helps you focus while you use the skool.com website. |
文件大小 | 52.77 KB |
安装次数 | 137 |
当前版本 | 1.5 |
更新时间 | 2023-11-29 |
上架时间 | 2023-10-22 |
评分 | 5.00/5 共3次评分 |
开发者 | F_x64b |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/Fx64b/skool-focus-extension |
隐私政策页面URL | https://github.com/Fx64b/skool-focus-extension/blob/main/PRIVACY.md |
支持的语言 | 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" } } |