Udacity OMSCS Chrome extension
Enable signing in to Georgia Tech from the Udacity signin page, and warn about logout when GATech credentials expire.
What is Udacity OMSCS Chrome extension?
Udacity OMSCS Chrome extension is a Chrome extension developed by herman, and its main feature is "Enable signing in to Georgia Tech from the Udacity signin page, and warn about logout when GATech credentials expire.".
Extension Screenshots
Download Udacity OMSCS Chrome extension Extension CRX File
Download Udacity OMSCS Chrome extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Udacity OMSCS Chrome extension |
ID | npeohnamhhodlfeejcpapmmmkpgdjcoc |
Official URL | https://chromewebstore.google.com/detail/udacity-omscs-chrome-exte/npeohnamhhodlfeejcpapmmmkpgdjcoc |
Description | Enable signing in to Georgia Tech from the Udacity signin page, and warn about logout when GATech credentials expire. |
File Size | 51.74 KB |
Installation Count | 112 |
Current Version | 0.4 |
Last Updated | 2015-03-31 |
Publish Date | 2015-03-31 |
Rating | 5.00/5 Total 1 Ratings |
Developer | herman |
Payment Type | free |
Supported Languages | 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" ] } ] } |