Coursera Smart Resume

Smart resume for Coursera lecture videos.

Co to jest Coursera Smart Resume?

Coursera Smart Resume to rozszerzenie Chrome opracowane przez herman, a jego główną funkcją jest „Smart resume for Coursera lecture videos.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Coursera Smart Resume

Pobierz pliki rozszerzeń Coursera Smart Resume w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Coursera Smart Resume Coursera Smart Resume
ID pieeafmmocmcgkdhiffldpmlfodpagdb
Oficjalny URL https://chrome.google.com/webstore/detail/coursera-smart-resume/pieeafmmocmcgkdhiffldpmlfodpagdb
Opis Smart resume for Coursera lecture videos.
Rozmiar pliku 5.24 KB
Liczba instalacji 77
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2013-05-07
Data Publikacji 2013-05-07
Deweloper herman
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}