Gradescope Add to Calendar

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

Qu'est-ce que Gradescope Add to Calendar ?

Gradescope Add to Calendar est une extension Chrome développée par calvinaatian, et sa fonction principale est "Adds a add to calendar button to all student assignments on Gradescope.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Gradescope Add to Calendar

Téléchargez les fichiers d'extension Gradescope Add to Calendar au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Gradescope Add to Calendar Gradescope Add to Calendar
ID bdbeeblaipbingbdhkgmkoefpfolpjmg
URL Officiel https://chromewebstore.google.com/detail/gradescope-add-to-calenda/bdbeeblaipbingbdhkgmkoefpfolpjmg
Description Adds a add to calendar button to all student assignments on Gradescope.
Taille du Fichier 60 KB
Nombre d'Installations 333
Version Actuelle 0.0.5
Dernière Mise à Jour 2023-01-27
Date de Publication 2022-11-30
Évaluation 5.00/5 Total 3 Évaluations
Développeur calvinaatian
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/calvinatian/gradescope-add-to-calendar-button
URL de la Page d'Aide https://github.com/calvinatian/gradescope-add-to-calendar-button/issues
Langues Prises en Charge 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"
            ]
        }
    ]
}