Skool Focus

A browser extension that helps you focus while you use the skool.com website.

Skool Focusคืออะไร?

Skool Focus เป็นส่วนขยายของ Chrome ที่พัฒนาโดย F_x64b และคุณลักษณะหลักของมันคือ "A browser extension that helps you focus while you use the skool.com website."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Skool Focus

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
    }
}