Coursera Progress

Control Coursera progress.

Что такое Coursera Progress?

Coursera Progress - это расширение Chrome, разработанное herman, и его основная функция - "Control Coursera progress.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Coursera Progress

Скачайте файлы расширений Coursera Progress в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Coursera Progress Coursera Progress
ID ahdbpipoojeoedkjhjmfflbgnlhpheoa
Официальный URL https://chromewebstore.google.com/detail/coursera-progress/ahdbpipoojeoedkjhjmfflbgnlhpheoa
Описание Control Coursera progress.
Размер файла 16.31 KB
Количество установок 637
Текущая Версия 1.2
Последнее Обновление 2013-06-02
Дата публикации 2013-06-02
Рейтинг 3.38/5 Всего 8 оценок
Разработчик herman
Тип оплаты free
Официальный сайт расширения https://github.com/has207/coursera-progress-chrome-extension
URL страницы помощи https://github.com/has207/coursera-progress-chrome-extension/issues
Поддерживаемые языки 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"
            ]
        }
    ]
}