Khan Academy Notifications

Enhance your Khan Academy experience with timely notifications and subtle improvements.

Khan Academy Notificationsคืออะไร?

Khan Academy Notifications เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Elias Murcray และคุณลักษณะหลักของมันคือ "Enhance your Khan Academy experience with timely notifications and subtle improvements."

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Khan Academy Notifications

ดาวน์โหลดไฟล์ส่วนขยาย Khan Academy Notifications ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        - Instantly reply to notifications in the popup.
- Mark all notifications as read in one click.
- Experience lightning-fast loading times with predictive preloading techniques.
- Boost your Khan Academy experience with the ability to load 100 replies at a time, instead of just 10.
- Take control of your browsing experience with customizable comment sorting on Khan Academy.

Version 3.0.0 Release Notes:
We've successfully reduced the extension size by more than 50%, now at 31.4KiB compared to the original 67.66KiB. Furthermore, we've eliminated the superfluous heartbeat script, opting instead to leverage the native Alarms API. This adjustment has lead to an average 1.76% in reduced memory usage during idle periods.

This extension is open source: https://github.com/eliasmurcray/ka-notifications                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Khan Academy Notifications Khan Academy Notifications
ID gdlfnahbohjggjhpcmabnfikiigncjbd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/khan-academy-notification/gdlfnahbohjggjhpcmabnfikiigncjbd
คำอธิบาย Enhance your Khan Academy experience with timely notifications and subtle improvements.
ขนาดไฟล์ 33.1 KB
จำนวนการติดตั้ง 296
เวอร์ชันปัจจุบัน 3.0.5
อัปเดตครั้งล่าสุด 2024-03-01
วันที่เผยแพร่ 2023-01-01
คะแนน 4.89/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา Elias Murcray
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/eliasmurcray/ka-notifications
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Khan Academy Notifications",
    "short_name": "KA Notifications",
    "author": "Elias Murcray",
    "version": "3.0.5",
    "minimum_chrome_version": "109",
    "homepage_url": "https:\/\/github.com\/eliasmurcray\/ka-notifications",
    "description": "Enhance your Khan Academy experience with timely notifications and subtle improvements.",
    "icons": {
        "16": "16.png",
        "32": "32.png",
        "48": "48.png",
        "128": "128.png"
    },
    "action": {
        "default_title": "Khan Academy Notifications",
        "default_icon": {
            "16": "16.png",
            "32": "32.png",
            "48": "48.png",
            "128": "128.png"
        },
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/www.khanacademy.org\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "cookies",
        "storage",
        "alarms"
    ],
    "host_permissions": [
        "https:\/\/www.khanacademy.org\/"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "fetch-override.js"
            ],
            "matches": [
                "https:\/\/www.khanacademy.org\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    }
}