Coursera Smart Resume

Smart resume for Coursera lecture videos.

Co je Coursera Smart Resume?

Coursera Smart Resume je rozšíření Chrome vyvinuté herman, a jeho hlavní funkcí je „Smart resume for Coursera lecture videos.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Coursera Smart Resume

Stáhněte si soubory rozšíření Coursera Smart Resume ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Coursera Smart Resume Coursera Smart Resume
ID pieeafmmocmcgkdhiffldpmlfodpagdb
Oficiální URL https://chrome.google.com/webstore/detail/coursera-smart-resume/pieeafmmocmcgkdhiffldpmlfodpagdb
Popis Smart resume for Coursera lecture videos.
Velikost souboru 5.24 KB
Počet instalací 77
Aktuální Verze 1.1
Poslední Aktualizace 2013-05-07
Datum Vydání 2013-05-07
Vývojář herman
Typ Platby free
Podporované Jazyky 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"
            ]
        }
    ]
}