Coursera Progress

Control Coursera progress.

Was ist Coursera Progress?

Coursera Progress ist eine Chrome-Erweiterung, die von herman entwickelt wurde, und ihr Hauptmerkmal ist "Control Coursera progress.".

Erweiterungsscreenshots

screenshot

Coursera Progress-Erweiterungs-CRX-Datei herunterladen

Laden Sie Coursera Progress-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extension allows you to finally take control over your Coursera progress. It adds an empty (gray) checkmark next to all lecture videos and lets you check/uncheck each lecture to mark them watched/unwatched.

Data for each course is kept separately and will be automatically synced across different browsers as long as you sign in to Chrome.

Managing quiz and assignment progress is also supported.

============================================

Source available on github if you feel like contributing:

https://github.com/has207/coursera-progress-chrome-extension

Icons courtesy of http://www.everaldo.com/ distributed under the LGPL.                    

Grundlegende Informationen zur Erweiterung

Name Coursera Progress Coursera Progress
ID ahdbpipoojeoedkjhjmfflbgnlhpheoa
Offizielle URL https://chromewebstore.google.com/detail/coursera-progress/ahdbpipoojeoedkjhjmfflbgnlhpheoa
Beschreibung Control Coursera progress.
Dateigröße 16.31 KB
Installationsanzahl 637
Aktuelle Version 1.2
Letztes Update 2013-06-02
Veröffentlichungsdatum 2013-06-02
Bewertung 3.38/5 Insgesamt 8 Bewertungen
Entwickler herman
Zahlungsart free
Erweiterungswebsite https://github.com/has207/coursera-progress-chrome-extension
Hilfeseite URL https://github.com/has207/coursera-progress-chrome-extension/issues
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Coursera Progress",
    "description": "Control Coursera progress.",
    "version": "1.2",
    "icons": {
        "48": "button_ok_48.png",
        "128": "button_ok_128.png"
    },
    "permissions": [
        "storage",
        "*:\/\/class.coursera.org\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/class.coursera.org\/*"
            ],
            "js": [
                "progress.js"
            ]
        }
    ]
}