Udacity OMSCS Chrome extension
Enable signing in to Georgia Tech from the Udacity signin page, and warn about logout when GATech credentials expire.
Cos'è Udacity OMSCS Chrome extension?
Udacity OMSCS Chrome extension è un'estensione di Chrome sviluppata da herman, e la sua funzione principale è "Enable signing in to Georgia Tech from the Udacity signin page, and warn about logout when GATech credentials expire.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Udacity OMSCS Chrome extension
Scarica i file di estensione Udacity OMSCS Chrome extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Udacity OMSCS Chrome extension |
ID | npeohnamhhodlfeejcpapmmmkpgdjcoc |
URL Ufficiale | https://chromewebstore.google.com/detail/udacity-omscs-chrome-exte/npeohnamhhodlfeejcpapmmmkpgdjcoc |
Descrizione | Enable signing in to Georgia Tech from the Udacity signin page, and warn about logout when GATech credentials expire. |
Dimensione del File | 51.74 KB |
Conteggio Installazioni | 112 |
Versione Corrente | 0.4 |
Ultimo Aggiornamento | 2015-03-31 |
Data di Pubblicazione | 2015-03-31 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | herman |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } ] } |