Gradescope Add to Calendar

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

什麼是Gradescope Add to Calendar?

Gradescope Add to Calendar是由calvinaatian開發的Chrome擴展程式,該擴展的主要功能是“Adds a add to calendar button to all student assignments on Gradescope.”。

擴展截圖

screenshot
screenshot

下載Gradescope Add to Calendar擴展crx文件

下載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
官方網址 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"
            ]
        }
    ]
}