Coursera to Calendar
This extension adds Coursera deadlines to the google calendar.
Cos'è Coursera to Calendar?
Coursera to Calendar è un'estensione di Chrome sviluppata da River Liu, e la sua funzione principale è "This extension adds Coursera deadlines to the google calendar.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Coursera to Calendar
Scarica i file di estensione Coursera to Calendar in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Coursera to Calendar |
ID | cbehklpdmnjgpihbafndppmgkakabmpe |
URL Ufficiale | https://chromewebstore.google.com/detail/coursera-to-calendar/cbehklpdmnjgpihbafndppmgkakabmpe |
Descrizione | This extension adds Coursera deadlines to the google calendar. |
Dimensione del File | 15.14 KB |
Conteggio Installazioni | 73 |
Versione Corrente | 0.2 |
Ultimo Aggiornamento | 2019-04-12 |
Data di Pubblicazione | 2019-04-12 |
Sviluppatore | River Liu |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/river34/coursera-to-calendar |
URL della Pagina di Aiuto | https://github.com/river34/coursera-to-calendar |
Lingue Supportate | 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" } |