Coursera to Calendar

This extension adds Coursera deadlines to the google calendar.

什麼是Coursera to Calendar?

Coursera to Calendar是由River Liu開發的Chrome擴展程式,該擴展的主要功能是“This extension adds Coursera deadlines to the google calendar.”。

擴展截圖

screenshot
screenshot

下載Coursera to Calendar擴展crx文件

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