Gradescope Add to Calendar
Adds a add to calendar button to all student assignments on Gradescope.
What is Gradescope Add to Calendar?
Gradescope Add to Calendar is a Chrome extension developed by calvinaatian, and its main feature is "Adds a add to calendar button to all student assignments on Gradescope.".
Extension Screenshots
Download Gradescope Add to Calendar Extension CRX File
Download Gradescope Add to Calendar extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Gradescope Add to Calendar |
ID | bdbeeblaipbingbdhkgmkoefpfolpjmg |
Official URL | https://chromewebstore.google.com/detail/gradescope-add-to-calenda/bdbeeblaipbingbdhkgmkoefpfolpjmg |
Description | Adds a add to calendar button to all student assignments on Gradescope. |
File Size | 60 KB |
Installation Count | 333 |
Current Version | 0.0.5 |
Last Updated | 2023-01-27 |
Publish Date | 2022-11-30 |
Rating | 5.00/5 Total 3 Ratings |
Developer | calvinaatian |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/calvinatian/gradescope-add-to-calendar-button |
Help Page URL | https://github.com/calvinatian/gradescope-add-to-calendar-button/issues |
Supported Languages | 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" ] } ] } |