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文件

下载HCPSS Canvas Assignment Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        ***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"
        }
    ]
}