Canvas Quiz Solution Remover

Removes correct answers from canvas quizzes by edting the HTML

What is Canvas Quiz Solution Remover?

Canvas Quiz Solution Remover is a Chrome extension developed by jf7776, and its main feature is "Removes correct answers from canvas quizzes by edting the HTML".

Extension Screenshots

screenshot

Download Canvas Quiz Solution Remover Extension CRX File

Download Canvas Quiz Solution Remover extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Canvas Quiz Solution Remover Canvas Quiz Solution Remover
ID bjnnkbaedklmpjohbnhnblglllonbkik
Official URL https://chromewebstore.google.com/detail/canvas-quiz-solution-remo/bjnnkbaedklmpjohbnhnblglllonbkik
Description Removes correct answers from canvas quizzes by edting the HTML
File Size 80.8 KB
Installation Count 756
Current Version 1.0
Last Updated 2021-05-04
Publish Date 2021-05-04
Rating 3.33/5 Total 3 Ratings
Developer jf7776
Email [email protected]
Payment Type free
Extension Website https://github.com/FanJason/canvas_quiz_solution_remover
Supported Languages 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"
    }
}