Comfortable Sakai
Comfortable Sakai is a Web browser extension for managing assignments and quizzes on Sakai LMS.
什么是Comfortable Sakai?
Comfortable Sakai是由das08开发的Chrome扩展程序,该扩展的主要功能是“Comfortable Sakai is a Web browser extension for managing assignments and quizzes on Sakai LMS.”。
扩展截图
下载Comfortable Sakai扩展crx文件
下载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.
扩展基本信息
名称 | |
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:\/\/*\/*" ] } ] } |