Coursera to Calendar
This extension adds Coursera deadlines to the google calendar.
O que é Coursera to Calendar?
Coursera to Calendar é uma extensão do Chrome desenvolvida por River Liu, e sua principal característica é "This extension adds Coursera deadlines to the google calendar.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Coursera to Calendar
Baixe arquivos de extensão Coursera to Calendar no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Coursera to Calendar |
ID | cbehklpdmnjgpihbafndppmgkakabmpe |
URL Oficial | https://chromewebstore.google.com/detail/coursera-to-calendar/cbehklpdmnjgpihbafndppmgkakabmpe |
Descrição | This extension adds Coursera deadlines to the google calendar. |
Tamanho do Arquivo | 15.14 KB |
Contagem de Instalações | 73 |
Versão Atual | 0.2 |
Última Atualização | 2019-04-12 |
Data de Publicação | 2019-04-12 |
Desenvolvedor | River Liu |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/river34/coursera-to-calendar |
URL da Página de Ajuda | https://github.com/river34/coursera-to-calendar |
Idiomas Suportados | 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" } |