Gradescope Add to Calendar

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

Cos'è Gradescope Add to Calendar?

Gradescope Add to Calendar è un'estensione di Chrome sviluppata da calvinaatian, e la sua funzione principale è "Adds a add to calendar button to all student assignments on Gradescope.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Gradescope Add to Calendar

Scarica i file di estensione Gradescope Add to Calendar in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Gradescope Add to Calendar Gradescope Add to Calendar
ID bdbeeblaipbingbdhkgmkoefpfolpjmg
URL Ufficiale https://chromewebstore.google.com/detail/gradescope-add-to-calenda/bdbeeblaipbingbdhkgmkoefpfolpjmg
Descrizione Adds a add to calendar button to all student assignments on Gradescope.
Dimensione del File 60 KB
Conteggio Installazioni 333
Versione Corrente 0.0.5
Ultimo Aggiornamento 2023-01-27
Data di Pubblicazione 2022-11-30
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore calvinaatian
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/calvinatian/gradescope-add-to-calendar-button
URL della Pagina di Aiuto https://github.com/calvinatian/gradescope-add-to-calendar-button/issues
Lingue Supportate 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"
            ]
        }
    ]
}