Comfortable Sakai

Comfortable Sakai is a Web browser extension for managing assignments and quizzes on Sakai LMS.

Comfortable Sakaiคืออะไร?

Comfortable Sakai เป็นส่วนขยายของ Chrome ที่พัฒนาโดย das08 และคุณลักษณะหลักของมันคือ "Comfortable Sakai is a Web browser extension for managing assignments and quizzes on Sakai LMS."

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

screenshot
screenshot

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

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

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

                        Comfortable Sakai is a Web browser extension for managing assignments and quizzes on Sakai LMS.
Users can see the list of all assignments of all courses with just 1-click. Assignments will be grouped with Red, Yellow, and, Green according to its due date. Notification badge will provided for newly posted assignments.                    

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

ชื่อ Comfortable Sakai Comfortable Sakai
ID dljchadmceknaijmdmnaaodjkkidhakh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/comfortable-sakai/dljchadmceknaijmdmnaaodjkkidhakh
คำอธิบาย Comfortable Sakai is a Web browser extension for managing assignments and quizzes on Sakai LMS.
ขนาดไฟล์ 1.25 MB
จำนวนการติดตั้ง 1,009
เวอร์ชันปัจจุบัน 2.0.1
อัปเดตครั้งล่าสุด 2022-05-16
วันที่เผยแพร่ 2022-04-23
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา das08
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/kyoto-u/comfortable-sakai
ภาษาที่รองรับ en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Comfortable Sakai",
    "description": "__MSG_EXTENSION_DESCRIPTION__",
    "version": "2.0.1",
    "manifest_version": 3,
    "default_locale": "en",
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "action": {
        "default_title": "Comfortable Sakai",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "content_script.js"
            ],
            "css": [
                "css\/comfortable-sakai.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "css\/comfortable-sakai.css",
                "img\/logo.png",
                "img\/noAssignment.png",
                "img\/miniSakaiBtn.png",
                "img\/closeBtn.svg"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}