Udacity OMSCS Chrome extension

Enable signing in to Georgia Tech from the Udacity signin page, and warn about logout when GATech credentials expire.

Co to jest Udacity OMSCS Chrome extension?

Udacity OMSCS Chrome extension to rozszerzenie Chrome opracowane przez herman, a jego główną funkcją jest „Enable signing in to Georgia Tech from the Udacity signin page, and warn about logout when GATech credentials expire.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Udacity OMSCS Chrome extension

Pobierz pliki rozszerzeń Udacity OMSCS Chrome extension 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

                        For OMSCS students.

- Detects when Georgia Tech has signed you out and show warning
- Enable signing in to Georgia Tech using the normal Udacity Signin button
- Make it more obvious how to signin on the /georgia-tech/welcome page                    

Podstawowe informacje o rozszerzeniu

Nazwa Udacity OMSCS Chrome extension Udacity OMSCS Chrome extension
ID npeohnamhhodlfeejcpapmmmkpgdjcoc
Oficjalny URL https://chromewebstore.google.com/detail/udacity-omscs-chrome-exte/npeohnamhhodlfeejcpapmmmkpgdjcoc
Opis Enable signing in to Georgia Tech from the Udacity signin page, and warn about logout when GATech credentials expire.
Rozmiar pliku 51.74 KB
Liczba instalacji 112
Aktualna Wersja 0.4
Ostatnia Aktualizacja 2015-03-31
Data Publikacji 2015-03-31
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper herman
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Udacity OMSCS Chrome extension",
    "version": "0.4",
    "manifest_version": 2,
    "description": "Enable signing in to Georgia Tech from the Udacity signin page, and warn about logout when GATech credentials expire.",
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "*:\/\/www.udacity.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.udacity.com\/course\/viewer"
            ],
            "js": [
                "omscs.js"
            ]
        },
        {
            "matches": [
                "*:\/\/www.udacity.com\/georgia-tech\/welcome"
            ],
            "js": [
                "link.js"
            ]
        },
        {
            "matches": [
                "*:\/\/www.udacity.com\/account\/auth"
            ],
            "js": [
                "signin.js"
            ]
        }
    ]
}