Coursera Smart Resume

Smart resume for Coursera lecture videos.

什么是Coursera Smart Resume?

Coursera Smart Resume是由herman开发的Chrome扩展程序,该扩展的主要功能是“Smart resume for Coursera lecture videos.”。

扩展截图

screenshot

下载Coursera Smart Resume扩展crx文件

下载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"
            ]
        }
    ]
}