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
官方網址 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"
            ]
        }
    ]
}