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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย herman และคุณลักษณะหลักของมันคือ "Enable signing in to Georgia Tech from the Udacity signin page, and warn about logout when GATech credentials expire."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Udacity OMSCS Chrome extension

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}