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.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Coursera to Calendar
قم بتنزيل ملفات الامتداد Coursera to Calendar بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
عنوان صفحة المساعدة | 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" } |