Udacity OMSCS Chrome extension
Enable signing in to Georgia Tech from the Udacity signin page, and warn about logout when GATech credentials expire.
Wat is Udacity OMSCS Chrome extension?
Udacity OMSCS Chrome extension is een Chrome-extensie ontwikkeld door herman, en de belangrijkste functie is "Enable signing in to Georgia Tech from the Udacity signin page, and warn about logout when GATech credentials expire.".
Extensie Screenshots
Download het CRX-bestand van de extensie Udacity OMSCS Chrome extension
Download Udacity OMSCS Chrome extension-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Udacity OMSCS Chrome extension |
ID | npeohnamhhodlfeejcpapmmmkpgdjcoc |
Officiële URL | https://chromewebstore.google.com/detail/udacity-omscs-chrome-exte/npeohnamhhodlfeejcpapmmmkpgdjcoc |
Beschrijving | Enable signing in to Georgia Tech from the Udacity signin page, and warn about logout when GATech credentials expire. |
Bestandsgrootte | 51.74 KB |
Aantal Installaties | 112 |
Huidige Versie | 0.4 |
Laatst Bijgewerkt | 2015-03-31 |
Publicatiedatum | 2015-03-31 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | herman |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } ] } |