Canvas Quiz Solution Remover

Removes correct answers from canvas quizzes by edting the HTML

Was ist Canvas Quiz Solution Remover?

Canvas Quiz Solution Remover ist eine Chrome-Erweiterung, die von jf7776 entwickelt wurde, und ihr Hauptmerkmal ist "Removes correct answers from canvas quizzes by edting the HTML".

Erweiterungsscreenshots

screenshot

Canvas Quiz Solution Remover-Erweiterungs-CRX-Datei herunterladen

Laden Sie Canvas Quiz Solution Remover-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Canvas Quiz Solution Remover Canvas Quiz Solution Remover
ID bjnnkbaedklmpjohbnhnblglllonbkik
Offizielle URL https://chromewebstore.google.com/detail/canvas-quiz-solution-remo/bjnnkbaedklmpjohbnhnblglllonbkik
Beschreibung Removes correct answers from canvas quizzes by edting the HTML
Dateigröße 80.8 KB
Installationsanzahl 756
Aktuelle Version 1.0
Letztes Update 2021-05-04
Veröffentlichungsdatum 2021-05-04
Bewertung 3.33/5 Insgesamt 3 Bewertungen
Entwickler jf7776
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/FanJason/canvas_quiz_solution_remover
Unterstützte Sprachen 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"
    }
}