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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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