Coursera to Calendar

This extension adds Coursera deadlines to the google calendar.

Qu'est-ce que Coursera to Calendar ?

Coursera to Calendar est une extension Chrome développée par River Liu, et sa fonction principale est "This extension adds Coursera deadlines to the google calendar.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Coursera to Calendar

Téléchargez les fichiers d'extension Coursera to Calendar au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Coursera to Calendar Coursera to Calendar
ID cbehklpdmnjgpihbafndppmgkakabmpe
URL Officiel https://chromewebstore.google.com/detail/coursera-to-calendar/cbehklpdmnjgpihbafndppmgkakabmpe
Description This extension adds Coursera deadlines to the google calendar.
Taille du Fichier 15.14 KB
Nombre d'Installations 73
Version Actuelle 0.2
Dernière Mise à Jour 2019-04-12
Date de Publication 2019-04-12
Développeur River Liu
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/river34/coursera-to-calendar
URL de la Page d'Aide https://github.com/river34/coursera-to-calendar
Langues Prises en Charge 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"
}