Comfortable Sakai
Comfortable Sakai is a Web browser extension for managing assignments and quizzes on Sakai LMS.
Was ist Comfortable Sakai?
Comfortable Sakai ist eine Chrome-Erweiterung, die von das08 entwickelt wurde, und ihr Hauptmerkmal ist "Comfortable Sakai is a Web browser extension for managing assignments and quizzes on Sakai LMS.".
Erweiterungsscreenshots
Comfortable Sakai-Erweiterungs-CRX-Datei herunterladen
Laden Sie Comfortable Sakai-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | dljchadmceknaijmdmnaaodjkkidhakh |
Offizielle URL | https://chromewebstore.google.com/detail/comfortable-sakai/dljchadmceknaijmdmnaaodjkkidhakh |
Beschreibung | Comfortable Sakai is a Web browser extension for managing assignments and quizzes on Sakai LMS. |
Dateigröße | 1.25 MB |
Installationsanzahl | 1,009 |
Aktuelle Version | 2.0.1 |
Letztes Update | 2022-05-16 |
Veröffentlichungsdatum | 2022-04-23 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | das08 |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/kyoto-u/comfortable-sakai |
Unterstützte Sprachen | 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:\/\/*\/*" ] } ] } |