Coursera score

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

Co je Coursera score?

Coursera score je rozšíření Chrome vyvinuté Vladislav Bogomolov, a jeho hlavní funkcí je „This extension gives you ability to sum points that you gained from quizzes and assignments taken and calculate your rate.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Coursera score

Stáhněte si soubory rozšíření Coursera score ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Coursera score Coursera score
ID igmcplaapopekadaekfnkgkdblaonipj
Oficiální URL https://chromewebstore.google.com/detail/coursera-score/igmcplaapopekadaekfnkgkdblaonipj
Popis This extension gives you ability to sum points that you gained from quizzes and assignments taken and calculate your rate.
Velikost souboru 60.8 KB
Počet instalací 362
Aktuální Verze 1.0
Poslední Aktualizace 2014-08-14
Datum Vydání 2014-08-14
Hodnocení 4.33/5 Celkem 6 Hodnocení
Vývojář Vladislav Bogomolov
Typ Platby free
Webové stránky Rozšíření https://github.com/vladson/coursera_quiz_points
URL Stránky Nápovědy https://github.com/vladson/coursera_quiz_points
Podporované Jazyky 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"
    }
}