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"
            ]
        }
    ]
}