Coursera score

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

Coursera score là gì?

Coursera score là một tiện ích mở rộng Chrome được phát triển bởi Vladislav Bogomolov, và tính năng chính của nó là "This extension gives you ability to sum points that you gained from quizzes and assignments taken and calculate your rate.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Coursera score

Tải xuống các tệp mở rộng Coursera score dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Coursera score Coursera score
ID igmcplaapopekadaekfnkgkdblaonipj
URL Chính Thức https://chromewebstore.google.com/detail/coursera-score/igmcplaapopekadaekfnkgkdblaonipj
Mô tả This extension gives you ability to sum points that you gained from quizzes and assignments taken and calculate your rate.
Kích Thước Tệp 60.8 KB
Số Lần Cài Đặt 362
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2014-08-14
Ngày Phát Hành 2014-08-14
Đánh Giá 4.33/5 Tổng số 6 Đánh Giá
Nhà Phát Triển Vladislav Bogomolov
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/vladson/coursera_quiz_points
URL Trang Trợ Giúp https://github.com/vladson/coursera_quiz_points
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}