Canvas Quiz Solution Remover

Removes correct answers from canvas quizzes by edting the HTML

Wat is Canvas Quiz Solution Remover?

Canvas Quiz Solution Remover is een Chrome-extensie ontwikkeld door jf7776, en de belangrijkste functie is "Removes correct answers from canvas quizzes by edting the HTML".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Canvas Quiz Solution Remover

Download Canvas Quiz Solution Remover-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Canvas Quiz Solution Remover Canvas Quiz Solution Remover
ID bjnnkbaedklmpjohbnhnblglllonbkik
Officiële URL https://chromewebstore.google.com/detail/canvas-quiz-solution-remo/bjnnkbaedklmpjohbnhnblglllonbkik
Beschrijving Removes correct answers from canvas quizzes by edting the HTML
Bestandsgrootte 80.8 KB
Aantal Installaties 756
Huidige Versie 1.0
Laatst Bijgewerkt 2021-05-04
Publicatiedatum 2021-05-04
Beoordeling 3.33/5 Totaal 3 Beoordelingen
Ontwikkelaar jf7776
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/FanJason/canvas_quiz_solution_remover
Ondersteunde Talen 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"
    }
}