Canvas Toolkit

Improvements for Canvas that give you more information and easier access to grades and assignments.

Canvas Toolkitคืออะไร?

Canvas Toolkit เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Matt Aaron และคุณลักษณะหลักของมันคือ "Improvements for Canvas that give you more information and easier access to grades and assignments."

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Canvas Toolkit ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Get quick access to grades and upcoming assignments on your dashboard, view additional information on assignment and quiz pages, view the overall class average for a course, and see if you'll be able to update or delete your discussion posts before you post them.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Canvas Toolkit Canvas Toolkit
ID nndblifdaiopimbaoneanemfokapfcia
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/canvas-toolkit/nndblifdaiopimbaoneanemfokapfcia
คำอธิบาย Improvements for Canvas that give you more information and easier access to grades and assignments.
ขนาดไฟล์ 21.06 KB
จำนวนการติดตั้ง 435
เวอร์ชันปัจจุบัน 0.0.3
อัปเดตครั้งล่าสุด 2021-11-09
วันที่เผยแพร่ 2021-11-03
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Matt Aaron
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Canvas Toolkit",
    "description": "Improvements for Canvas that give you more information and easier access to grades and assignments.",
    "version": "0.0.3",
    "manifest_version": 3,
    "icons": {
        "16": "icons\/icon_16.png",
        "24": "icons\/icon_24.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.instructure.com\/"
            ],
            "css": [
                "css\/dashboard\/course_card_details.css"
            ],
            "js": [
                "js\/dashboard\/course_card_details.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "https:\/\/*.instructure.com\/courses\/*\/grades*"
            ],
            "js": [
                "js\/grades\/class_average.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/*.instructure.com\/courses\/*\/assignments\/*"
            ],
            "js": [
                "js\/assignments\/additional_details.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/*.instructure.com\/courses\/*\/quizzes\/*"
            ],
            "js": [
                "js\/quizzes\/additional_details.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/*.instructure.com\/*\/discussion_topics\/*"
            ],
            "js": [
                "js\/discussion_topics\/post_permissions_injector.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/discussion_topics\/post_permissions_viewer.js"
            ],
            "matches": [
                "https:\/\/*.instructure.com\/*"
            ]
        }
    ]
}