Canvas Quiz Solution Remover

Removes correct answers from canvas quizzes by edting the HTML

ما هو Canvas Quiz Solution Remover؟

Canvas Quiz Solution Remover هو إضافة Chrome تم تطويرها بواسطة jf7776، والميزة الرئيسية لها هي "Removes correct answers from canvas quizzes by edting the HTML".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Canvas Quiz Solution Remover

قم بتنزيل ملفات الامتداد Canvas Quiz Solution Remover بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
البريد الإلكتروني [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"
    }
}