Coursera Smart Resume

Smart resume for Coursera lecture videos.

Wat is Coursera Smart Resume?

Coursera Smart Resume is een Chrome-extensie ontwikkeld door herman, en de belangrijkste functie is "Smart resume for Coursera lecture videos.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Coursera Smart Resume

Download Coursera Smart Resume-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Coursera Smart Resume Coursera Smart Resume
ID pieeafmmocmcgkdhiffldpmlfodpagdb
Officiële URL https://chrome.google.com/webstore/detail/coursera-smart-resume/pieeafmmocmcgkdhiffldpmlfodpagdb
Beschrijving Smart resume for Coursera lecture videos.
Bestandsgrootte 5.24 KB
Aantal Installaties 77
Huidige Versie 1.1
Laatst Bijgewerkt 2013-05-07
Publicatiedatum 2013-05-07
Ontwikkelaar herman
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}