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
公式URL 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
Eメール [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"
    }
}