Coursera score

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

What is Coursera score?

Coursera score is a Chrome extension developed by Vladislav Bogomolov, and its main feature is "This extension gives you ability to sum points that you gained from quizzes and assignments taken and calculate your rate.".

Extension Screenshots

screenshot

Download Coursera score Extension CRX File

Download Coursera score extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Coursera score Coursera score
ID igmcplaapopekadaekfnkgkdblaonipj
Official URL https://chromewebstore.google.com/detail/coursera-score/igmcplaapopekadaekfnkgkdblaonipj
Description This extension gives you ability to sum points that you gained from quizzes and assignments taken and calculate your rate.
File Size 60.8 KB
Installation Count 362
Current Version 1.0
Last Updated 2014-08-14
Publish Date 2014-08-14
Rating 4.33/5 Total 6 Ratings
Developer Vladislav Bogomolov
Payment Type free
Extension Website https://github.com/vladson/coursera_quiz_points
Help Page URL https://github.com/vladson/coursera_quiz_points
Supported Languages 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"
    }
}