Gradescope Add to Calendar

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

Что такое Gradescope Add to Calendar?

Gradescope Add to Calendar - это расширение Chrome, разработанное calvinaatian, и его основная функция - "Adds a add to calendar button to all student assignments on Gradescope.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Gradescope Add to Calendar

Скачайте файлы расширений Gradescope Add to Calendar в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название Gradescope Add to Calendar Gradescope Add to Calendar
ID bdbeeblaipbingbdhkgmkoefpfolpjmg
Официальный URL https://chromewebstore.google.com/detail/gradescope-add-to-calenda/bdbeeblaipbingbdhkgmkoefpfolpjmg
Описание Adds a add to calendar button to all student assignments on Gradescope.
Размер файла 60 KB
Количество установок 333
Текущая Версия 0.0.5
Последнее Обновление 2023-01-27
Дата публикации 2022-11-30
Рейтинг 5.00/5 Всего 3 оценок
Разработчик calvinaatian
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/calvinatian/gradescope-add-to-calendar-button
URL страницы помощи https://github.com/calvinatian/gradescope-add-to-calendar-button/issues
Поддерживаемые языки 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"
            ]
        }
    ]
}