Gradescope Add to Calendar

Adds a add to calendar button to all student assignments on Gradescope.

Hvad er Gradescope Add to Calendar?

Gradescope Add to Calendar er en Chrome-udvidelse udviklet af calvinaatian, og dens hovedfunktion er "Adds a add to calendar button to all student assignments on Gradescope.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Gradescope Add to Calendar-udvidelses-CRX-fil

Download Gradescope Add to Calendar-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

                        Gradescope Add to Calendar Button

Source available on https://github.com/calvinatian/gradescope-add-to-calendar-button

Adds a button to create calendar events next to all Gradescope assignments.

Uses https://github.com/add2cal/add-to-calendar-button to generate links.

Currently:
- Adds calendar button to all courses user is enrolled in as a student on gradescope.com
- Button to the right of date column
- Default styling on calendar button                    

Grundlæggende oplysninger om udvidelsen

Navn Gradescope Add to Calendar Gradescope Add to Calendar
ID bdbeeblaipbingbdhkgmkoefpfolpjmg
Officiel URL https://chromewebstore.google.com/detail/gradescope-add-to-calenda/bdbeeblaipbingbdhkgmkoefpfolpjmg
Beskrivelse Adds a add to calendar button to all student assignments on Gradescope.
Filstørrelse 60 KB
Antal Installationer 333
Nuværende Version 0.0.5
Senest Opdateret 2023-01-27
Udgivelsesdato 2022-11-30
Bedømmelse 5.00/5 Samlet 3 Bedømmelser
Udvikler calvinaatian
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/calvinatian/gradescope-add-to-calendar-button
Hjælpeside-URL https://github.com/calvinatian/gradescope-add-to-calendar-button/issues
Understøttede Sprog en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Gradescope Add to Calendar",
    "version": "0.0.5",
    "description": "Adds a add to calendar button to all student assignments on Gradescope.",
    "icons": {
        "16": "assets\/icons\/16x16.png",
        "32": "assets\/icons\/32x32.png",
        "48": "assets\/icons\/48x48.png",
        "128": "assets\/icons\/128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.gradescope.com\/courses\/*"
            ],
            "css": [
                "assets\/css\/calendar.css",
                "assets\/add-to-calendar-button\/atcb.min.css"
            ],
            "js": [
                "gradescope_calendar_button.js",
                "assets\/add-to-calendar-button\/atcb.min.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "*:\/\/*.gradescope.com\/*"
            ],
            "resources": [
                "assets\/add-to-calendar-button\/atcb.min.js",
                "assets\/add-to-calendar-button\/atcb.min.css",
                "assets\/css\/button.css"
            ]
        }
    ]
}