Udacity OMSCS Chrome extension
Enable signing in to Georgia Tech from the Udacity signin page, and warn about logout when GATech credentials expire.
什麼是Udacity OMSCS Chrome extension?
Udacity OMSCS Chrome extension是由herman開發的Chrome擴展程式,該擴展的主要功能是“Enable signing in to Georgia Tech from the Udacity signin page, and warn about logout when GATech credentials expire.”。
擴展截圖
下載Udacity OMSCS Chrome extension擴展crx文件
下載Udacity OMSCS Chrome extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | Udacity OMSCS Chrome extension |
ID | npeohnamhhodlfeejcpapmmmkpgdjcoc |
官方網址 | https://chromewebstore.google.com/detail/udacity-omscs-chrome-exte/npeohnamhhodlfeejcpapmmmkpgdjcoc |
簡介 | Enable signing in to Georgia Tech from the Udacity signin page, and warn about logout when GATech credentials expire. |
檔案大小 | 51.74 KB |
安裝次數 | 112 |
目前版本 | 0.4 |
更新時間 | 2015-03-31 |
上架時間 | 2015-03-31 |
評分 | 5.00/5 共 1 次評分 |
開發者 | herman |
付費類型 | free |
支援的語言 | 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" ] } ] } |