Canvas Easy Grader

This extension will increase the number of features in calculating grades on the Canvas Interface

Canvas Easy Graderคืออะไร?

Canvas Easy Grader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Rithvik Ravikumar และคุณลักษณะหลักของมันคือ "This extension will increase the number of features in calculating grades on the Canvas Interface"

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        https://github.com/rrithvik/CanvasGradeTool
*Themes may not work 100% on websites with their own color filter. In these cases disable themes by toggling to None*
How to Enable Grade Editing: 
1) Navigate to your grades tab on canvas
2) Click on the extension in the top navigation bar and click Calculate.
3) That's it! You're ready to get to editing!

An extension that enhances the Canvas interface to allow easy grade calculation. Canvas Grade Tool is a simple Canvas extension that adds the ability to calculate grades with realtime grade updates.

Features:  
 - Finals Grade Calculator
 - Add and delete assignments
 - Add and delete weightage categories
 - Grade Breakdown by Category
- THEMES:
   -- Choose from an assortment of themes including light, dark, inverted and many more!

--- Update 4.0 Notes:
     -- Migrated extension to be compatible with recent changes in Canvas LMS. The updates to Canvas prevented the extension from working as intended.
--- Update 3.4 Notes:
     -- Users can now choose whether or not videos should be changed with themes
--- Update 3.2 Notes:
     -- Themes now are remembered and automatically load with the website
     -- Users can now choose whether or not images should be changed with themes
--- Update 3.1 Notes:
     -- Fixed bug to allow for calculations in classes that do not provide a weights table in the grades tab
--- Update 3.0 Notes:
     -- INTRODUCING FINALS GRADE CALCULATOR: Find out exactly what grade you need on that final to secure that desired grade with ease
     -- You can now remove categories as well
     -- New Themes
     -- Renamed from Canvas Grade Calculator to Canvas Easy Grader                    

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

ชื่อ Canvas Easy Grader Canvas Easy Grader
ID ejdmegbgihgjnfdpmieagjmoekkohnhd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/canvas-easy-grader/ejdmegbgihgjnfdpmieagjmoekkohnhd
คำอธิบาย This extension will increase the number of features in calculating grades on the Canvas Interface
ขนาดไฟล์ 187 KB
จำนวนการติดตั้ง 6,037
เวอร์ชันปัจจุบัน 4.0
อัปเดตครั้งล่าสุด 2023-01-23
วันที่เผยแพร่ 2020-10-14
คะแนน 4.19/5 รวมทั้งหมด 16 คะแนน
ผู้พัฒนา Rithvik Ravikumar
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/rrithvik/CanvasGradeTool
URL หน้านโยบายความเป็นส่วนตัว https://www.privacypolicytemplate.net/live.php?token=ThmhAUjSX2WZqiFPDFnIj98rtYA17zVv
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Canvas Easy Grader",
    "description": "This extension will increase the number of features in calculating grades on the Canvas Interface",
    "version": "4.0",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "all_frames": true,
            "js": [
                "static\/js\/jquery-3.5.1.js",
                "static\/js\/content.js"
            ]
        }
    ],
    "action": {
        "default_icon": "static\/images\/icon.png",
        "default_popup": "templates\/popup.html"
    },
    "background": {
        "service_worker": "static\/js\/background.js",
        "type": "module"
    },
    "options_page": "templates\/options.html",
    "permissions": [
        "declarativeContent",
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "templates\/table.html",
                "templates\/finalGradeCalc.html",
                "templates\/assignment.html",
                "static\/js\/injectScript.js",
                "static\/js\/table.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}