Canvas Betterizer

Quality-of-life improvements for Canvas by Instructure

Canvas Betterizer क्या है?

Canvas Betterizer Rob Noorda द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Quality-of-life improvements for Canvas by Instructure"।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        If you're a teach spending time grading and working in Canvas, you know how much time it can take! Canvas Betterizer is meant to make your time spent in Canvas by Instructure more efficient by adding small quality-of-life improvements, especially in SpeedGrader:
-Automatically focuses and selects the student grade
-Hit enter to submit grade and move on to the next student
-Save comments that you type often and pull them from a dropdown box to make grading even faster!
-Hit enter when typing a comment to submit it

Outside of Speedgrader:
-Remove those pesky tooltips that show up in the gradebook and cover up assignment scores
-Smallify your messages to make your inbox more accessible

Canvas Betterizer collects no information about you or your students. Privacy policy found at http://robertnoorda.com/portfolio/canvas-betterizer/#privacy                    

एक्सटेंशन की मूल जानकारी

नाम Canvas Betterizer Canvas Betterizer
ID pndigbfohhechaafblmjdicbbahgigfg
आधिकारिक URL https://chromewebstore.google.com/detail/canvas-betterizer/pndigbfohhechaafblmjdicbbahgigfg
विवरण Quality-of-life improvements for Canvas by Instructure
फ़ाइल का आकार 26.88 KB
स्थापना संख्या 12,129
वर्तमान संस्करण 0.0.0.2
अंतिम अपडेट 2021-02-14
प्रकाशन तिथि 2018-10-29
रेटिंग 4.00/5 कुल 6 रेटिंग्स
डेवलपर Rob Noorda
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://robertnoorda.com/portfolio/canvas-betterizer/
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Canvas Betterizer",
    "short_name": "Betterizer",
    "description": "Quality-of-life improvements for Canvas by Instructure",
    "version": "0.0.0.2",
    "browser_action": {
        "default_icon": "static\/images\/icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.instructure.com\/conversations*"
            ],
            "js": [
                "js\/inbox.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.instructure.com\/*\/speed_grader*"
            ],
            "js": [
                "js\/speedgrader.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.learn.vccs.edu\/conversations*"
            ],
            "js": [
                "js\/inbox.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.learn.vccs.edu\/*\/speed_grader*"
            ],
            "js": [
                "js\/speedgrader.js"
            ]
        }
    ],
    "icons": {
        "16": "static\/images\/icon16.png",
        "32": "static\/images\/icon32.png",
        "48": "static\/images\/icon48.png",
        "64": "static\/images\/icon64.png",
        "128": "static\/images\/icon128.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ]
}