Blackboard Grader

Hide questions marked as correct and show only questions with incorrect answers.

Blackboard Graderคืออะไร?

Blackboard Grader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย TSamuel และคุณลักษณะหลักของมันคือ "Hide questions marked as correct and show only questions with incorrect answers."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Blackboard Grader

ดาวน์โหลดไฟล์ส่วนขยาย Blackboard Grader ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension is intended for faculty at Austin Community College, who administer online tests on Blackboard. The extension does not alter the content nor interact with content on the LMS server. Faculty can use this to hide all questions marked as correct and to show only those that are either partially correct or incorrect. 

Once added as an extension, the user may pin the extension to the extensions bar for easy access. The extension is designed to work on pages that contain test items with correct or incorrect markings. Once the page is displayed, click the extension's icon (it will appear in color if the page you are on is on www.austincc.edu) to hide the questions marked as correct. User may then change the grades for any question just they would do while grading. 

Hitting the  icon again or clicking the 'refresh' button or moving to the next page will unhide the hidden questions and you may choose to hide the correct questions on the next page by clicking the extension icon again.

No logins are required and no data about the user or the test item on display will be collected or stored by the extension.

USE SCENARIO 1:
During Grading: Manual review and grading becomes faster as you need to focus only on questions that are incorrect. Hiding the questions marked as correct eliminates unnecessary page scrolling and fatigue.

USE SCENARIO 2:
During Test Reviews: When you are discussing a test with a student during a review, hiding the questions marked correct helps you focus on the areas the student failed to do well.

If you are not a faculty member at Austin Community College and would like to use this on your Blackboard site, contact us by email.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Blackboard Grader Blackboard Grader
ID pemdnnioakfiffdfhglndfhdgbhjglfd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/blackboard-grader/pemdnnioakfiffdfhglndfhdgbhjglfd
คำอธิบาย Hide questions marked as correct and show only questions with incorrect answers.
ขนาดไฟล์ 18.54 KB
จำนวนการติดตั้ง 73
เวอร์ชันปัจจุบัน 0.0.1.0
อัปเดตครั้งล่าสุด 2023-04-12
วันที่เผยแพร่ 2023-04-10
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา TSamuel
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว https://docs.google.com/document/d/1ygFJzyGq5UsW2VnVDKY6NBTUCJy1uPk-S61xpPqgAws/edit?usp=sharing
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Blackboard Grader",
    "version": "0.0.1.0",
    "description": "Hide questions marked as correct and show only questions with incorrect answers.",
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "action": {
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_title": "Hide Questions Marked Correct"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/acconline.austincc.edu\/webapps\/assessment\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}