Udacity OMSCS Chrome extension
Enable signing in to Georgia Tech from the Udacity signin page, and warn about logout when GATech credentials expire.
O que é Udacity OMSCS Chrome extension?
Udacity OMSCS Chrome extension é uma extensão do Chrome desenvolvida por herman, e sua principal característica é "Enable signing in to Georgia Tech from the Udacity signin page, and warn about logout when GATech credentials expire.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Udacity OMSCS Chrome extension
Baixe arquivos de extensão Udacity OMSCS Chrome extension no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Udacity OMSCS Chrome extension |
ID | npeohnamhhodlfeejcpapmmmkpgdjcoc |
URL Oficial | https://chromewebstore.google.com/detail/udacity-omscs-chrome-exte/npeohnamhhodlfeejcpapmmmkpgdjcoc |
Descrição | Enable signing in to Georgia Tech from the Udacity signin page, and warn about logout when GATech credentials expire. |
Tamanho do Arquivo | 51.74 KB |
Contagem de Instalações | 112 |
Versão Atual | 0.4 |
Última Atualização | 2015-03-31 |
Data de Publicação | 2015-03-31 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | herman |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } ] } |