Coursera Progress

Control Coursera progress.

Co to jest Coursera Progress?

Coursera Progress to rozszerzenie Chrome opracowane przez herman, a jego główną funkcją jest „Control Coursera progress.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Coursera Progress

Pobierz pliki rozszerzeń Coursera Progress 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

                        This extension allows you to finally take control over your Coursera progress. It adds an empty (gray) checkmark next to all lecture videos and lets you check/uncheck each lecture to mark them watched/unwatched.

Data for each course is kept separately and will be automatically synced across different browsers as long as you sign in to Chrome.

Managing quiz and assignment progress is also supported.

============================================

Source available on github if you feel like contributing:

https://github.com/has207/coursera-progress-chrome-extension

Icons courtesy of http://www.everaldo.com/ distributed under the LGPL.                    

Podstawowe informacje o rozszerzeniu

Nazwa Coursera Progress Coursera Progress
ID ahdbpipoojeoedkjhjmfflbgnlhpheoa
Oficjalny URL https://chromewebstore.google.com/detail/coursera-progress/ahdbpipoojeoedkjhjmfflbgnlhpheoa
Opis Control Coursera progress.
Rozmiar pliku 16.31 KB
Liczba instalacji 637
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2013-06-02
Data Publikacji 2013-06-02
Ocena 3.38/5 Łącznie 8 Oceny
Deweloper herman
Typ Płatności free
Strona Rozszerzenia https://github.com/has207/coursera-progress-chrome-extension
Adres URL Strony Pomocy https://github.com/has207/coursera-progress-chrome-extension/issues
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Coursera Progress",
    "description": "Control Coursera progress.",
    "version": "1.2",
    "icons": {
        "48": "button_ok_48.png",
        "128": "button_ok_128.png"
    },
    "permissions": [
        "storage",
        "*:\/\/class.coursera.org\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/class.coursera.org\/*"
            ],
            "js": [
                "progress.js"
            ]
        }
    ]
}