Coursera Smart Resume

Smart resume for Coursera lecture videos.

Apa itu Coursera Smart Resume?

Coursera Smart Resume adalah ekstensi Chrome yang dikembangkan oleh herman, dan fitur utamanya adalah "Smart resume for Coursera lecture videos.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Coursera Smart Resume

Unduh file ekstensi Coursera Smart Resume dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Coursera Smart Resume Coursera Smart Resume
ID pieeafmmocmcgkdhiffldpmlfodpagdb
URL Resmi https://chrome.google.com/webstore/detail/coursera-smart-resume/pieeafmmocmcgkdhiffldpmlfodpagdb
Deskripsi Smart resume for Coursera lecture videos.
Ukuran File 5.24 KB
Jumlah Instalasi 77
Versi Saat Ini 1.1
Terakhir Diperbarui 2013-05-07
Tanggal Publikasi 2013-05-07
Pengembang herman
Tipe Pembayaran free
Bahasa yang Didukung 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"
            ]
        }
    ]
}