Canvas Betterizer

Quality-of-life improvements for Canvas by Instructure

什么是Canvas Betterizer?

Canvas Betterizer是由Rob Noorda开发的Chrome扩展程序,该扩展的主要功能是“Quality-of-life improvements for Canvas by Instructure”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Canvas Betterizer扩展crx文件

下载Canvas Betterizer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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