Gradescope Add to Calendar

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

Was ist Gradescope Add to Calendar?

Gradescope Add to Calendar ist eine Chrome-Erweiterung, die von calvinaatian entwickelt wurde, und ihr Hauptmerkmal ist "Adds a add to calendar button to all student assignments on Gradescope.".

Erweiterungsscreenshots

screenshot
screenshot

Gradescope Add to Calendar-Erweiterungs-CRX-Datei herunterladen

Laden Sie Gradescope Add to Calendar-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Gradescope Add to Calendar Gradescope Add to Calendar
ID bdbeeblaipbingbdhkgmkoefpfolpjmg
Offizielle URL https://chromewebstore.google.com/detail/gradescope-add-to-calenda/bdbeeblaipbingbdhkgmkoefpfolpjmg
Beschreibung Adds a add to calendar button to all student assignments on Gradescope.
Dateigröße 60 KB
Installationsanzahl 333
Aktuelle Version 0.0.5
Letztes Update 2023-01-27
Veröffentlichungsdatum 2022-11-30
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler calvinaatian
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/calvinatian/gradescope-add-to-calendar-button
Hilfeseite URL https://github.com/calvinatian/gradescope-add-to-calendar-button/issues
Unterstützte Sprachen 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"
            ]
        }
    ]
}