Gradescope Add to Calendar

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

Wat is Gradescope Add to Calendar?

Gradescope Add to Calendar is een Chrome-extensie ontwikkeld door calvinaatian, en de belangrijkste functie is "Adds a add to calendar button to all student assignments on Gradescope.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Gradescope Add to Calendar

Download Gradescope Add to Calendar-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Gradescope Add to Calendar Gradescope Add to Calendar
ID bdbeeblaipbingbdhkgmkoefpfolpjmg
Officiële URL https://chromewebstore.google.com/detail/gradescope-add-to-calenda/bdbeeblaipbingbdhkgmkoefpfolpjmg
Beschrijving Adds a add to calendar button to all student assignments on Gradescope.
Bestandsgrootte 60 KB
Aantal Installaties 333
Huidige Versie 0.0.5
Laatst Bijgewerkt 2023-01-27
Publicatiedatum 2022-11-30
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar calvinaatian
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/calvinatian/gradescope-add-to-calendar-button
Help Pagina-URL https://github.com/calvinatian/gradescope-add-to-calendar-button/issues
Ondersteunde Talen 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"
            ]
        }
    ]
}