Canvas Dashboard Grades

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

Canvas Dashboard Grades là gì?

Canvas Dashboard Grades là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "A simple extension that adds your current grades to the dashboard in Canvas LMS".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Canvas Dashboard Grades

Tải xuống các tệp mở rộng Canvas Dashboard Grades dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Canvas Dashboard Grades Canvas Dashboard Grades
ID jnlnibjgafmamocabdhidiaajkdphkpe
URL Chính Thức https://chromewebstore.google.com/detail/canvas-dashboard-grades/jnlnibjgafmamocabdhidiaajkdphkpe
Mô tả A simple extension that adds your current grades to the dashboard in Canvas LMS
Kích Thước Tệp 21.37 KB
Số Lần Cài Đặt 1,861
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2019-12-10
Ngày Phát Hành 2019-12-09
Đánh Giá 4.44/5 Tổng số 9 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/budsterblue/CanvasDashboardGrades
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}