Canvas Answer Scratcher

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

Cos'è Canvas Answer Scratcher?

Canvas Answer Scratcher è un'estensione di Chrome sviluppata da abbasr723868, e la sua funzione principale è "Ever wanted to scratch out answers while taking a quiz on Canvas? Well here's your friend.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Canvas Answer Scratcher

Scarica i file di estensione Canvas Answer Scratcher in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Canvas Answer Scratcher Canvas Answer Scratcher
ID hiokkipjpomgippmpjbnkjdpgbacbgfk
URL Ufficiale https://chromewebstore.google.com/detail/canvas-answer-scratcher/hiokkipjpomgippmpjbnkjdpgbacbgfk
Descrizione Ever wanted to scratch out answers while taking a quiz on Canvas? Well here's your friend.
Dimensione del File 482 KB
Conteggio Installazioni 404
Versione Corrente 1.0
Ultimo Aggiornamento 2021-09-20
Data di Pubblicazione 2021-09-19
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore abbasr723868
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}