Coursera to Calendar
This extension adds Coursera deadlines to the google calendar.
What is Coursera to Calendar?
Coursera to Calendar is a Chrome extension developed by River Liu, and its main feature is "This extension adds Coursera deadlines to the google calendar.".
Extension Screenshots
Download Coursera to Calendar Extension CRX File
Download Coursera to Calendar extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Coursera to Calendar |
ID | cbehklpdmnjgpihbafndppmgkakabmpe |
Official URL | https://chromewebstore.google.com/detail/coursera-to-calendar/cbehklpdmnjgpihbafndppmgkakabmpe |
Description | This extension adds Coursera deadlines to the google calendar. |
File Size | 15.14 KB |
Installation Count | 73 |
Current Version | 0.2 |
Last Updated | 2019-04-12 |
Publish Date | 2019-04-12 |
Developer | River Liu |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/river34/coursera-to-calendar |
Help Page URL | https://github.com/river34/coursera-to-calendar |
Supported Languages | 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" } |