HCPSS Canvas Assignment Extension
Collect all assignments for courses in Canvas
Co to jest HCPSS Canvas Assignment Extension?
HCPSS Canvas Assignment Extension to rozszerzenie Chrome opracowane przez Ankit Patel, a jego główną funkcją jest „Collect all assignments for courses in Canvas”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia HCPSS Canvas Assignment Extension
Pobierz pliki rozszerzeń HCPSS Canvas Assignment Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
***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
Podstawowe informacje o rozszerzeniu
Nazwa | HCPSS Canvas Assignment Extension |
ID | baabmfbgjcnooapabhjehpakihoihmin |
Oficjalny URL | https://chromewebstore.google.com/detail/hcpss-canvas-assignment-e/baabmfbgjcnooapabhjehpakihoihmin |
Opis | Collect all assignments for courses in Canvas |
Rozmiar pliku | 6.23 KB |
Liczba instalacji | 1,849 |
Aktualna Wersja | 4.0 |
Ostatnia Aktualizacja | 2021-09-06 |
Data Publikacji | 2020-09-19 |
Ocena | 4.91/5 Łącznie 11 Oceny |
Deweloper | Ankit Patel |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/ankpat/CanvasAssignmentExtension |
Adres URL Strony Pomocy | https://github.com/ankpat/CanvasAssignmentExtension/issues |
Obsługiwane Języki | 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" } ] } |