Canvas Quiz Solution Remover

Removes correct answers from canvas quizzes by edting the HTML

Cos'è Canvas Quiz Solution Remover?

Canvas Quiz Solution Remover è un'estensione di Chrome sviluppata da jf7776, e la sua funzione principale è "Removes correct answers from canvas quizzes by edting the HTML".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Canvas Quiz Solution Remover

Scarica i file di estensione Canvas Quiz Solution Remover 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 uses jQuery to modify the HTML tags on the active tab to hide the solutions of a marked Canvas quiz. Refresh the page to re-enable the answers.                    

Informazioni di Base sull'Estensione

Nome Canvas Quiz Solution Remover Canvas Quiz Solution Remover
ID bjnnkbaedklmpjohbnhnblglllonbkik
URL Ufficiale https://chromewebstore.google.com/detail/canvas-quiz-solution-remo/bjnnkbaedklmpjohbnhnblglllonbkik
Descrizione Removes correct answers from canvas quizzes by edting the HTML
Dimensione del File 80.8 KB
Conteggio Installazioni 756
Versione Corrente 1.0
Ultimo Aggiornamento 2021-05-04
Data di Pubblicazione 2021-05-04
Valutazione 3.33/5 Totale 3 Valutazioni
Sviluppatore jf7776
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/FanJason/canvas_quiz_solution_remover
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Canvas Quiz Solution Remover",
    "description": "Removes correct answers from canvas quizzes by edting the HTML",
    "version": "1.0",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.min.js",
                "popup.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "image.png"
    }
}