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 là gì?

Udacity OMSCS Chrome extension là một tiện ích mở rộng Chrome được phát triển bởi herman, và tính năng chính của nó là "Enable signing in to Georgia Tech from the Udacity signin page, and warn about logout when GATech credentials expire.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Udacity OMSCS Chrome extension

Tải xuống các tệp mở rộng Udacity OMSCS Chrome extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Udacity OMSCS Chrome extension Udacity OMSCS Chrome extension
ID npeohnamhhodlfeejcpapmmmkpgdjcoc
URL Chính Thức https://chromewebstore.google.com/detail/udacity-omscs-chrome-exte/npeohnamhhodlfeejcpapmmmkpgdjcoc
Mô tả Enable signing in to Georgia Tech from the Udacity signin page, and warn about logout when GATech credentials expire.
Kích Thước Tệp 51.74 KB
Số Lần Cài Đặt 112
Phiên Bản Hiện Tại 0.4
Cập Nhật Lần Cuối 2015-03-31
Ngày Phát Hành 2015-03-31
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển herman
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}