Google Classroom User Redirect

Redirects all Google classroom requests to specify the correct Google user ID

ما هو Google Classroom User Redirect؟

Google Classroom User Redirect هو إضافة Chrome تم تطويرها بواسطة https://matthew-cash.com، والميزة الرئيسية لها هي "Redirects all Google classroom requests to specify the correct Google user ID".

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

screenshot

تحميل ملف CRX للإضافة Google Classroom User Redirect

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

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

                        Many people have a separate google account for personal use and educational use. When visiting google classroom from an external account (e.g. gmail), the classroom link is opened in the primary account, which for many people is not their educational account. This extension fixes this problem by changing the Google user ID in the browser to match the user ID for the user's educational account                    

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

الاسم Google Classroom User Redirect Google Classroom User Redirect
ID lcapnmcmmiolacjfdlfpjabfgdacgikk
عنوان URL الرسمي https://chromewebstore.google.com/detail/google-classroom-user-red/lcapnmcmmiolacjfdlfpjabfgdacgikk
الوصف Redirects all Google classroom requests to specify the correct Google user ID
حجم الملف 6.64 KB
عدد التثبيتات 19
النسخة الحالية 1.0.0
آخر تحديث 2020-08-31
تاريخ النشر 2020-08-31
تقييم 5.00/5 مجموع تقييمات 2
المطور https://matthew-cash.com
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/MatthewCash/google-classroom-user-redirect
عنوان صفحة المساعدة https://github.com/MatthewCash/google-classroom-user-redirect/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Classroom User Redirect",
    "short_name": "Classroom User Redirect",
    "description": "Redirects all Google classroom requests to specify the correct Google user ID",
    "version": "1.0.0",
    "options_page": "views\/options.html",
    "permissions": [
        "*:\/\/classroom.google.com\/",
        "webRequest",
        "webRequestBlocking",
        "storage",
        "background"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "page_action": {
        "default_title": "Google Classroom User Redirect"
    }
}