Canvas Answer Scratcher

Ever wanted to scratch out answers while taking a quiz on Canvas? Well here's your friend.

¿Qué es Canvas Answer Scratcher?

Canvas Answer Scratcher es una extensión de Chrome desarrollada por abbasr723868, y su función principal es "Ever wanted to scratch out answers while taking a quiz on Canvas? Well here's your friend.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Canvas Answer Scratcher

Descarga archivos de extensión Canvas Answer Scratcher 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

                        This extension will edit HTML inside a specific page students see inside a quiz page. It will allow the students to scratch out specific answers which helps the students decide which answer is correct. This functionality does not currently exist in Canvas itself.                    

Información Básica de la Extensión

Nombre Canvas Answer Scratcher Canvas Answer Scratcher
ID hiokkipjpomgippmpjbnkjdpgbacbgfk
URL Oficial https://chromewebstore.google.com/detail/canvas-answer-scratcher/hiokkipjpomgippmpjbnkjdpgbacbgfk
Descripción Ever wanted to scratch out answers while taking a quiz on Canvas? Well here's your friend.
Tamaño del Archivo 482 KB
Cantidad de Instalaciones 404
Versión Actual 1.0
Última Actualización 2021-09-20
Fecha de Publicación 2021-09-19
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador abbasr723868
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Canvas Answer Scratcher",
    "author": "Rasool Abbas",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Ever wanted to scratch out answers while taking a quiz on Canvas? Well here's your friend.",
    "icons": {
        "256": "images\/icon.png"
    },
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "popup.html"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.instructure.com\/*"
            ],
            "js": [
                "scripts\/main.js"
            ]
        }
    ]
}