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 |
Eメール | [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:\/\/*\/*" ] } ] } |