Coursera to Calendar
This extension adds Coursera deadlines to the google calendar.
Coursera to Calendar là gì?
Coursera to Calendar là một tiện ích mở rộng Chrome được phát triển bởi River Liu, và tính năng chính của nó là "This extension adds Coursera deadlines to the google calendar.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Coursera to Calendar
Tải xuống các tệp mở rộng Coursera to Calendar dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Coursera to Calendar |
ID | cbehklpdmnjgpihbafndppmgkakabmpe |
URL Chính Thức | https://chromewebstore.google.com/detail/coursera-to-calendar/cbehklpdmnjgpihbafndppmgkakabmpe |
Mô tả | This extension adds Coursera deadlines to the google calendar. |
Kích Thước Tệp | 15.14 KB |
Số Lần Cài Đặt | 73 |
Phiên Bản Hiện Tại | 0.2 |
Cập Nhật Lần Cuối | 2019-04-12 |
Ngày Phát Hành | 2019-04-12 |
Nhà Phát Triển | River Liu |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/river34/coursera-to-calendar |
URL Trang Trợ Giúp | https://github.com/river34/coursera-to-calendar |
Ngôn Ngữ Được Hỗ Trợ | 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" } |