HCPSS Canvas Assignment Extension

Collect all assignments for courses in Canvas

HCPSS Canvas Assignment Extension란 무엇입니까?

HCPSS Canvas Assignment Extension은(는) Ankit Patel에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Collect all assignments for courses in Canvas"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

HCPSS Canvas Assignment Extension 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        ***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                    

확장 프로그램 기본 정보

이름 HCPSS Canvas Assignment Extension HCPSS Canvas Assignment Extension
ID baabmfbgjcnooapabhjehpakihoihmin
공식 URL https://chromewebstore.google.com/detail/hcpss-canvas-assignment-e/baabmfbgjcnooapabhjehpakihoihmin
설명 Collect all assignments for courses in Canvas
파일 크기 6.23 KB
설치 횟수 1,849
현재 버전 4.0
최근 업데이트 2021-09-06
출시 날짜 2020-09-19
평점 4.91/5 총 11 개의 평점
개발자 Ankit Patel
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/ankpat/CanvasAssignmentExtension
도움말 페이지 URL https://github.com/ankpat/CanvasAssignmentExtension/issues
지원되는 언어 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"
        }
    ]
}