HCPSS Canvas Assignment Extension
Collect all assignments for courses in Canvas
Was ist HCPSS Canvas Assignment Extension?
HCPSS Canvas Assignment Extension ist eine Chrome-Erweiterung, die von Ankit Patel entwickelt wurde, und ihr Hauptmerkmal ist "Collect all assignments for courses in Canvas".
Erweiterungsscreenshots
HCPSS Canvas Assignment Extension-Erweiterungs-CRX-Datei herunterladen
Laden Sie HCPSS Canvas Assignment Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
***This extension is my personal project. It is not an official HCPSS developed or supported solution. Please do not contact HCPSS for support. Developer contact information is provided on the Chrome Webstore page.*** Extension for the HCPSS Canvas LMS instance. This extension adds a new section to the sidebar which displays all active assignments which have no submissions. This allows students to easily see which assignments must still be turned in. * This extension does not store any data locally. * This extension does not communicate with any third-party servers. Changelog ========= Changes in v4.0: - Updated for 2021 Canvas changes. - Unsubmitted assignments appear when in small-width mode in the new tray Changes in v3.2: - Filter out past-due assignments from list Changes in v3.1: - Added explicit ordering to assignments. Changes in v3: - Modernized the underlying JavaScript - Streamlined API calls to avoid hitting throttling limits
Grundlegende Informationen zur Erweiterung
Name | HCPSS Canvas Assignment Extension |
ID | baabmfbgjcnooapabhjehpakihoihmin |
Offizielle URL | https://chromewebstore.google.com/detail/hcpss-canvas-assignment-e/baabmfbgjcnooapabhjehpakihoihmin |
Beschreibung | Collect all assignments for courses in Canvas |
Dateigröße | 6.23 KB |
Installationsanzahl | 1,849 |
Aktuelle Version | 4.0 |
Letztes Update | 2021-09-06 |
Veröffentlichungsdatum | 2020-09-19 |
Bewertung | 4.91/5 Insgesamt 11 Bewertungen |
Entwickler | Ankit Patel |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/ankpat/CanvasAssignmentExtension |
Hilfeseite URL | https://github.com/ankpat/CanvasAssignmentExtension/issues |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "HCPSS Canvas Assignment Extension", "version": "4.0", "description": "Collect all assignments for courses in Canvas", "manifest_version": 2, "content_scripts": [ { "matches": [ "https:\/\/hcpss.instructure.com\/*" ], "js": [ "contentScript.js" ], "run_at": "document_idle" } ] } |