Canvas Betterizer

Quality-of-life improvements for Canvas by Instructure

¿Qué es Canvas Betterizer?

Canvas Betterizer es una extensión de Chrome desarrollada por Rob Noorda, y su función principal es "Quality-of-life improvements for Canvas by Instructure".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Canvas Betterizer

Descarga archivos de extensión Canvas Betterizer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Canvas Betterizer Canvas Betterizer
ID pndigbfohhechaafblmjdicbbahgigfg
URL Oficial https://chromewebstore.google.com/detail/canvas-betterizer/pndigbfohhechaafblmjdicbbahgigfg
Descripción Quality-of-life improvements for Canvas by Instructure
Tamaño del Archivo 26.88 KB
Cantidad de Instalaciones 12,129
Versión Actual 0.0.0.2
Última Actualización 2021-02-14
Fecha de Publicación 2018-10-29
Calificación 4.00/5 Total de 6 Calificaciones
Desarrollador Rob Noorda
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión http://robertnoorda.com/portfolio/canvas-betterizer/
Idiomas Soportados 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"
    ]
}