HCPSS Canvas Assignment Extension
Collect all assignments for courses in Canvas
Cos'è HCPSS Canvas Assignment Extension?
HCPSS Canvas Assignment Extension è un'estensione di Chrome sviluppata da Ankit Patel, e la sua funzione principale è "Collect all assignments for courses in Canvas".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione HCPSS Canvas Assignment Extension
Scarica i file di estensione HCPSS Canvas Assignment Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
***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
Informazioni di Base sull'Estensione
Nome | HCPSS Canvas Assignment Extension |
ID | baabmfbgjcnooapabhjehpakihoihmin |
URL Ufficiale | https://chromewebstore.google.com/detail/hcpss-canvas-assignment-e/baabmfbgjcnooapabhjehpakihoihmin |
Descrizione | Collect all assignments for courses in Canvas |
Dimensione del File | 6.23 KB |
Conteggio Installazioni | 1,849 |
Versione Corrente | 4.0 |
Ultimo Aggiornamento | 2021-09-06 |
Data di Pubblicazione | 2020-09-19 |
Valutazione | 4.91/5 Totale 11 Valutazioni |
Sviluppatore | Ankit Patel |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/ankpat/CanvasAssignmentExtension |
URL della Pagina di Aiuto | https://github.com/ankpat/CanvasAssignmentExtension/issues |
Lingue Supportate | 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" } ] } |