Canvas Quiz Solution Remover

Removes correct answers from canvas quizzes by edting the HTML

Canvas Quiz Solution Remover là gì?

Canvas Quiz Solution Remover là một tiện ích mở rộng Chrome được phát triển bởi jf7776, và tính năng chính của nó là "Removes correct answers from canvas quizzes by edting the HTML".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Canvas Quiz Solution Remover

Tải xuống các tệp mở rộng Canvas Quiz Solution Remover dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Canvas Quiz Solution Remover Canvas Quiz Solution Remover
ID bjnnkbaedklmpjohbnhnblglllonbkik
URL Chính Thức https://chromewebstore.google.com/detail/canvas-quiz-solution-remo/bjnnkbaedklmpjohbnhnblglllonbkik
Mô tả Removes correct answers from canvas quizzes by edting the HTML
Kích Thước Tệp 80.8 KB
Số Lần Cài Đặt 756
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2021-05-04
Ngày Phát Hành 2021-05-04
Đánh Giá 3.33/5 Tổng số 3 Đánh Giá
Nhà Phát Triển jf7776
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/FanJason/canvas_quiz_solution_remover
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}