Coursera score

This extension gives you ability to sum points that you gained from quizzes and assignments taken and calculate your rate.

Was ist Coursera score?

Coursera score ist eine Chrome-Erweiterung, die von Vladislav Bogomolov entwickelt wurde, und ihr Hauptmerkmal ist "This extension gives you ability to sum points that you gained from quizzes and assignments taken and calculate your rate.".

Erweiterungsscreenshots

screenshot

Coursera score-Erweiterungs-CRX-Datei herunterladen

Laden Sie Coursera score-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 gives you ability to calculate your points on Coursera courses quizzes, assignments and add points for peer assignments.

Keep track of your progress in three easy steps:
1. Visit quiz page
2. Visit assignments page
3. Add points for peer assignments.

Note that quiz points are noticed only after completion of quiz.                    

Grundlegende Informationen zur Erweiterung

Name Coursera score Coursera score
ID igmcplaapopekadaekfnkgkdblaonipj
Offizielle URL https://chromewebstore.google.com/detail/coursera-score/igmcplaapopekadaekfnkgkdblaonipj
Beschreibung This extension gives you ability to sum points that you gained from quizzes and assignments taken and calculate your rate.
Dateigröße 60.8 KB
Installationsanzahl 362
Aktuelle Version 1.0
Letztes Update 2014-08-14
Veröffentlichungsdatum 2014-08-14
Bewertung 4.33/5 Insgesamt 6 Bewertungen
Entwickler Vladislav Bogomolov
Zahlungsart free
Erweiterungswebsite https://github.com/vladson/coursera_quiz_points
Hilfeseite URL https://github.com/vladson/coursera_quiz_points
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Coursera score",
    "description": "This extension gives you ability to sum points that you gained from quizzes and assignments taken and calculate your rate.",
    "version": "1.0",
    "author": "Vladislav Bogomolov ",
    "icons": {
        "16": "resources\/icon_16.png",
        "48": "resources\/icon_48.png",
        "64": "resources\/icon_64.png",
        "128": "resources\/icon_128.png"
    },
    "permissions": [
        "activeTab",
        "https:\/\/class.coursera.org\/*\/quiz",
        "http:\/\/class.coursera.org\/*\/quiz",
        "storage"
    ],
    "content_scripts": [
        {
            "js": [
                "libs\/jquery-2.1.1.min.js",
                "libs\/underscore-min.js",
                "build\/page.js"
            ],
            "matches": [
                "https:\/\/class.coursera.org\/*\/quiz",
                "http:\/\/class.coursera.org\/*\/quiz",
                "https:\/\/class.coursera.org\/*\/assignment",
                "http:\/\/class.coursera.org\/*\/assignment"
            ]
        }
    ],
    "background": {
        "scripts": [
            "\/build\/background.js"
        ]
    },
    "page_action": {
        "default_name": "Calculate your score",
        "default_icon": "resources\/icon_64_transparent.png",
        "default_popup": "popup.html"
    }
}