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.”。

擴展截圖

screenshot

下載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 Skool Focus
ID nchfffdkbhafombnfcpladflclakmdmo
官方網址 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"
    }
}