Udacity OMSCS Chrome extension
Enable signing in to Georgia Tech from the Udacity signin page, and warn about logout when GATech credentials expire.
Hvad er Udacity OMSCS Chrome extension?
Udacity OMSCS Chrome extension er en Chrome-udvidelse udviklet af herman, og dens hovedfunktion er "Enable signing in to Georgia Tech from the Udacity signin page, and warn about logout when GATech credentials expire.".
Udvidelsesskærmbilleder
Download Udacity OMSCS Chrome extension-udvidelses-CRX-fil
Download Udacity OMSCS Chrome extension-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | Udacity OMSCS Chrome extension |
ID | npeohnamhhodlfeejcpapmmmkpgdjcoc |
Officiel URL | https://chromewebstore.google.com/detail/udacity-omscs-chrome-exte/npeohnamhhodlfeejcpapmmmkpgdjcoc |
Beskrivelse | Enable signing in to Georgia Tech from the Udacity signin page, and warn about logout when GATech credentials expire. |
Filstørrelse | 51.74 KB |
Antal Installationer | 112 |
Nuværende Version | 0.4 |
Senest Opdateret | 2015-03-31 |
Udgivelsesdato | 2015-03-31 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | herman |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } ] } |