Canvas Quiz Solution Remover

Removes correct answers from canvas quizzes by edting the HTML

什麼是Canvas Quiz Solution Remover?

Canvas Quiz Solution Remover是由jf7776開發的Chrome擴展程式,該擴展的主要功能是“Removes correct answers from canvas quizzes by edting the HTML”。

擴展截圖

screenshot

下載Canvas Quiz Solution Remover擴展crx文件

下載Canvas Quiz Solution Remover擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Canvas Quiz Solution Remover Canvas Quiz Solution Remover
ID bjnnkbaedklmpjohbnhnblglllonbkik
官方網址 https://chromewebstore.google.com/detail/canvas-quiz-solution-remo/bjnnkbaedklmpjohbnhnblglllonbkik
簡介 Removes correct answers from canvas quizzes by edting the HTML
檔案大小 80.8 KB
安裝次數 756
目前版本 1.0
更新時間 2021-05-04
上架時間 2021-05-04
評分 3.33/5 共 3 次評分
開發者 jf7776
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/FanJason/canvas_quiz_solution_remover
支援的語言 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"
    }
}