Coursera to Calendar
This extension adds Coursera deadlines to the google calendar.
Coursera to Calendar क्या है?
Coursera to Calendar River Liu द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension adds Coursera deadlines to the google calendar."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Coursera to Calendar एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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" } |