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.”。

扩展截图

screenshot
screenshot

下载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 Udacity OMSCS Chrome extension
ID npeohnamhhodlfeejcpapmmmkpgdjcoc
官方URL 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"
            ]
        }
    ]
}