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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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