Comfortable Sakai
Comfortable Sakai is a Web browser extension for managing assignments and quizzes on Sakai LMS.
Qu'est-ce que Comfortable Sakai ?
Comfortable Sakai est une extension Chrome développée par das08, et sa fonction principale est "Comfortable Sakai is a Web browser extension for managing assignments and quizzes on Sakai LMS.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Comfortable Sakai
Téléchargez les fichiers d'extension Comfortable Sakai au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | dljchadmceknaijmdmnaaodjkkidhakh |
URL Officiel | https://chromewebstore.google.com/detail/comfortable-sakai/dljchadmceknaijmdmnaaodjkkidhakh |
Description | Comfortable Sakai is a Web browser extension for managing assignments and quizzes on Sakai LMS. |
Taille du Fichier | 1.25 MB |
Nombre d'Installations | 1,009 |
Version Actuelle | 2.0.1 |
Dernière Mise à Jour | 2022-05-16 |
Date de Publication | 2022-04-23 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | das08 |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/kyoto-u/comfortable-sakai |
Langues Prises en Charge | 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:\/\/*\/*" ] } ] } |