HCPSS Canvas Assignment Extension
Collect all assignments for courses in Canvas
Qu'est-ce que HCPSS Canvas Assignment Extension ?
HCPSS Canvas Assignment Extension est une extension Chrome développée par Ankit Patel, et sa fonction principale est "Collect all assignments for courses in Canvas".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension HCPSS Canvas Assignment Extension
Téléchargez les fichiers d'extension HCPSS Canvas Assignment Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
***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
Informations de Base sur l'Extension
Nom | HCPSS Canvas Assignment Extension |
ID | baabmfbgjcnooapabhjehpakihoihmin |
URL Officiel | https://chromewebstore.google.com/detail/hcpss-canvas-assignment-e/baabmfbgjcnooapabhjehpakihoihmin |
Description | Collect all assignments for courses in Canvas |
Taille du Fichier | 6.23 KB |
Nombre d'Installations | 1,849 |
Version Actuelle | 4.0 |
Dernière Mise à Jour | 2021-09-06 |
Date de Publication | 2020-09-19 |
Évaluation | 4.91/5 Total 11 Évaluations |
Développeur | Ankit Patel |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/ankpat/CanvasAssignmentExtension |
URL de la Page d'Aide | https://github.com/ankpat/CanvasAssignmentExtension/issues |
Langues Prises en Charge | 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" } ] } |