Canvas Dashboard Grades

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

Canvas Dashboard Gradesคืออะไร?

Canvas Dashboard Grades เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "A simple extension that adds your current grades to the dashboard in Canvas LMS"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Canvas Dashboard Grades

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}