Comfortable Sakai
Comfortable Sakai is a Web browser extension for managing assignments and quizzes on Sakai LMS.
What is Comfortable Sakai?
Comfortable Sakai is a Chrome extension developed by das08, and its main feature is "Comfortable Sakai is a Web browser extension for managing assignments and quizzes on Sakai LMS.".
Extension Screenshots
Download Comfortable Sakai Extension CRX File
Download Comfortable Sakai extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | dljchadmceknaijmdmnaaodjkkidhakh |
Official URL | https://chromewebstore.google.com/detail/comfortable-sakai/dljchadmceknaijmdmnaaodjkkidhakh |
Description | Comfortable Sakai is a Web browser extension for managing assignments and quizzes on Sakai LMS. |
File Size | 1.25 MB |
Installation Count | 1,009 |
Current Version | 2.0.1 |
Last Updated | 2022-05-16 |
Publish Date | 2022-04-23 |
Rating | 5.00/5 Total 1 Ratings |
Developer | das08 |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/kyoto-u/comfortable-sakai |
Supported Languages | 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:\/\/*\/*" ] } ] } |