Canvas Dashboard Grades

A simple extension that adds your current grades to the dashboard in Canvas LMS

什么是Canvas Dashboard Grades?

Canvas Dashboard Grades是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“A simple extension that adds your current grades to the dashboard in Canvas LMS”。

扩展截图

screenshot
screenshot

下载Canvas Dashboard Grades扩展crx文件

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

扩展使用说明

                        This extension aims to replicate the "show grades" toggle option in the mobile app that for some reason doesn't exist on the website. This is NOT an official extension, just a random guy working on a fun and simple coding project in his spare time. Your grades are never sent to me as everything is handled on your computer. It uses the official Canvas API to grab your grades and overlays them on the dashboard's card view, so you'll want to make sure you set your dashboard view to "Card View" by clicking on the three vertical dots in the upper right corner and selecting the card view option.                    

扩展基本信息

名称 Canvas Dashboard Grades Canvas Dashboard Grades
ID jnlnibjgafmamocabdhidiaajkdphkpe
官方URL https://chromewebstore.google.com/detail/canvas-dashboard-grades/jnlnibjgafmamocabdhidiaajkdphkpe
简介 A simple extension that adds your current grades to the dashboard in Canvas LMS
文件大小 21.37 KB
安装次数 1,861
当前版本 1.0
更新时间 2019-12-10
上架时间 2019-12-09
评分 4.44/5 共9次评分
开发者 Unknown
付费类型 free
扩展官网 https://github.com/budsterblue/CanvasDashboardGrades
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Canvas Dashboard Grades",
    "short_name": "CDG",
    "description": "A simple extension that adds your current grades to the dashboard in Canvas LMS",
    "version": "1.0",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.instructure.com\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ]
}