Coursera to Calendar

This extension adds Coursera deadlines to the google calendar.

Coursera to Calendarคืออะไร?

Coursera to Calendar เป็นส่วนขยายของ Chrome ที่พัฒนาโดย River Liu และคุณลักษณะหลักของมันคือ "This extension adds Coursera deadlines to the google calendar."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Coursera to Calendar

ดาวน์โหลดไฟล์ส่วนขยาย Coursera to Calendar ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension adds Coursera deadlines to the google calendar, so that you won't miss important benchmarks, and finish the online course on time!

Instructions:
- Navigate to the "Grades" page of a course
- Click the extension icon on the browser bar
- Wait for google calendar events to be generated, and confirm each one of them

Notes:
- If there are a lot of deadlines in the "Grade" page, it might take a while to add them all to the calendar
- You need to manually confirm each calendar event to add it                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Coursera to Calendar Coursera to Calendar
ID cbehklpdmnjgpihbafndppmgkakabmpe
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/coursera-to-calendar/cbehklpdmnjgpihbafndppmgkakabmpe
คำอธิบาย This extension adds Coursera deadlines to the google calendar.
ขนาดไฟล์ 15.14 KB
จำนวนการติดตั้ง 73
เวอร์ชันปัจจุบัน 0.2
อัปเดตครั้งล่าสุด 2019-04-12
วันที่เผยแพร่ 2019-04-12
ผู้พัฒนา River Liu
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/river34/coursera-to-calendar
URL หน้าช่วยเหลือ https://github.com/river34/coursera-to-calendar
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Coursera to Calendar",
    "version": "0.2",
    "description": "This extension adds Coursera deadlines to the google calendar.",
    "icons": {
        "128": "icon_128.png",
        "512": "icon_512.png"
    },
    "browser_action": {
        "default_icon": "icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.coursera.org\/*\/home\/assignments"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "author": "River Liu",
    "devtools_page": "https:\/\/github.com\/river34\/coursera-to-calendar",
    "homepage_url": "https:\/\/github.com\/river34\/coursera-to-calendar"
}