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