Gradescope Add to Calendar
Adds a add to calendar button to all student assignments on Gradescope.
Gradescope Add to Calendarとは何ですか?
Gradescope Add to Calendarはcalvinaatianによって開発されたChromeの拡張機能で、その主な機能は「Adds a add to calendar button to all student assignments on Gradescope.」です。
拡張機能のスクリーンショット
Gradescope Add to Calendar拡張機能のCRXファイルをダウンロード
Gradescope Add to Calendar拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Gradescope Add to Calendar Button Source available on https://github.com/calvinatian/gradescope-add-to-calendar-button Adds a button to create calendar events next to all Gradescope assignments. Uses https://github.com/add2cal/add-to-calendar-button to generate links. Currently: - Adds calendar button to all courses user is enrolled in as a student on gradescope.com - Button to the right of date column - Default styling on calendar button
拡張機能の基本情報
名前 | Gradescope Add to Calendar |
ID | bdbeeblaipbingbdhkgmkoefpfolpjmg |
公式URL | https://chromewebstore.google.com/detail/gradescope-add-to-calenda/bdbeeblaipbingbdhkgmkoefpfolpjmg |
説明 | Adds a add to calendar button to all student assignments on Gradescope. |
ファイルサイズ | 60 KB |
インストール数 | 333 |
現在のバージョン | 0.0.5 |
最終更新日 | 2023-01-27 |
公開日 | 2022-11-30 |
評価 | 5.00/5 合計 3 レビュー |
開発者 | calvinaatian |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/calvinatian/gradescope-add-to-calendar-button |
ヘルプページのURL | https://github.com/calvinatian/gradescope-add-to-calendar-button/issues |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Gradescope Add to Calendar", "version": "0.0.5", "description": "Adds a add to calendar button to all student assignments on Gradescope.", "icons": { "16": "assets\/icons\/16x16.png", "32": "assets\/icons\/32x32.png", "48": "assets\/icons\/48x48.png", "128": "assets\/icons\/128x128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.gradescope.com\/courses\/*" ], "css": [ "assets\/css\/calendar.css", "assets\/add-to-calendar-button\/atcb.min.css" ], "js": [ "gradescope_calendar_button.js", "assets\/add-to-calendar-button\/atcb.min.js" ] } ], "web_accessible_resources": [ { "matches": [ "*:\/\/*.gradescope.com\/*" ], "resources": [ "assets\/add-to-calendar-button\/atcb.min.js", "assets\/add-to-calendar-button\/atcb.min.css", "assets\/css\/button.css" ] } ] } |