Moodle Auto Login

Automatically clicks login when you load the moodle for UMass Amherst.

ما هو Moodle Auto Login؟

Moodle Auto Login هو إضافة Chrome تم تطويرها بواسطة ggordbegli، والميزة الرئيسية لها هي "Automatically clicks login when you load the moodle for UMass Amherst.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Moodle Auto Login

قم بتنزيل ملفات الامتداد Moodle Auto Login بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Are you a student at UMass Amherst? Do you use Moodle? If you answered yes to both of these questions and are tired of Moodle logging you out every two seconds this extension is for you. When you load Moodle it will click the login button for you so you never have to again.                    

معلومات أساسية عن التمديد

الاسم Moodle Auto Login Moodle Auto Login
ID nfpmdpogbdlfbniimbdkokpcmmleemia
عنوان URL الرسمي https://chromewebstore.google.com/detail/moodle-auto-login/nfpmdpogbdlfbniimbdkokpcmmleemia
الوصف Automatically clicks login when you load the moodle for UMass Amherst.
حجم الملف 15.22 KB
عدد التثبيتات 44
النسخة الحالية 1.0
آخر تحديث 2022-02-04
تاريخ النشر 2022-02-03
تقييم 4.57/5 مجموع تقييمات 7
المطور ggordbegli
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة سياسة الخصوصية https://gabrielgordbegli.com/Privacy-Policies/moodle-auto-login
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Moodle Auto Login",
    "version": "1.0",
    "description": "Automatically clicks login when you load the moodle for UMass Amherst.",
    "icons": {
        "16": "\/images\/icon-16.png",
        "48": "\/images\/icon-48.png",
        "128": "\/images\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/umass.moonami.com\/"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_end",
            "permissions": [
                "https:\/\/umass.moonami.com\/"
            ],
            "all_frames": false
        }
    ]
}