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"
            ]
        }
    ]
}