Coursera Smart Resume

Smart resume for Coursera lecture videos.

Что такое Coursera Smart Resume?

Coursera Smart Resume - это расширение Chrome, разработанное herman, и его основная функция - "Smart resume for Coursera lecture videos.".

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

screenshot

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

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

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

                        Resume Coursera lecture videos where you last left off instead of always starting at the beginning.

If you feel like contributing the code is available on github:

https://github.com/has207/coursera-resume-chrome-extension

Icons courtesy of http://www.interactivemania.com distributed under the Creative Commons license.

Screenshots don't really make sense for this extension so enjoy a view of Mt Fuji from my office window instead.                    

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

Название Coursera Smart Resume Coursera Smart Resume
ID pieeafmmocmcgkdhiffldpmlfodpagdb
Официальный URL https://chrome.google.com/webstore/detail/coursera-smart-resume/pieeafmmocmcgkdhiffldpmlfodpagdb
Описание Smart resume for Coursera lecture videos.
Размер файла 5.24 KB
Количество установок 77
Текущая Версия 1.1
Последнее Обновление 2013-05-07
Дата публикации 2013-05-07
Разработчик herman
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Coursera Smart Resume",
    "description": "Smart resume for Coursera lecture videos.",
    "version": "1.1",
    "icons": {
        "48": "resume_48.png",
        "128": "resume_128.png"
    },
    "permissions": [
        "storage",
        "*:\/\/class.coursera.org\/"
    ],
    "background": {
        "scripts": [
            "bg.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/class.coursera.org\/*"
            ],
            "all_frames": true,
            "js": [
                "resume.js"
            ]
        }
    ]
}