CanvasGrade

Displays hidden grades

Hvad er CanvasGrade?

CanvasGrade er en Chrome-udvidelse udviklet af Jack Hughes, og dens hovedfunktion er "Displays hidden grades".

Udvidelsesskærmbilleder

screenshot

Download CanvasGrade-udvidelses-CRX-fil

Download CanvasGrade-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        Stressed about your hidden grades? This extension will reveal your overall grades. It includes full support for classes with weighted categories and displays your total points and overall grade in each class on the canvas grades page. It also includes support for canvas's native "what-if-scores" and will recalculate your overall grade when you update one of these scores.

Update: Version 3.0 (4/20/21)
What's new: 
- Update All classes button
- Weighted class options! Customize the weights of your classes
- Weighted class "Always zero percent" bugfix

If you have any problems please feel free to email me at any time: [email protected]                    

Grundlæggende oplysninger om udvidelsen

Navn CanvasGrade CanvasGrade
ID cbinmjekhdabagpnjoakcackljbdeikk
Officiel URL https://chromewebstore.google.com/detail/canvasgrade/cbinmjekhdabagpnjoakcackljbdeikk
Beskrivelse Displays hidden grades
Filstørrelse 64.1 KB
Antal Installationer 150
Nuværende Version 3.0
Senest Opdateret 2021-04-21
Udgivelsesdato 2020-10-21
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler Jack Hughes
E-mail [email protected]
Betalingsmetode free
Hjælpeside-URL https://forms.gle/eZD9ZxtdTfeLdvaW7
Understøttede Sprog en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CanvasGrade",
    "version": "3.0",
    "version_name": "3.0",
    "description": "Displays hidden grades",
    "author": "Jack Hughes",
    "permissions": [
        "https:\/\/kentdenver.instructure.com\/courses\/*\/grades",
        "tabs",
        "storage",
        "windows"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "icons": {
        "64": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.instructure.com\/courses\/*\/grades"
            ],
            "js": [
                "modifier.js"
            ],
            "run_at": "document_end"
        }
    ]
}