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