Canvas Toolkit

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

Canvas Toolkit क्या है?

Canvas Toolkit Matt Aaron द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Improvements for Canvas that give you more information and easier access to grades and assignments."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Canvas Toolkit एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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\/*"
            ]
        }
    ]
}