Google Meet Exit Page
Configure the exit page after ending a Google Meet call.
ما هو Google Meet Exit Page؟
Google Meet Exit Page هو إضافة Chrome تم تطويرها بواسطة https://clydedsouza.net، والميزة الرئيسية لها هي "Configure the exit page after ending a Google Meet call.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Google Meet Exit Page
قم بتنزيل ملفات الامتداد Google Meet Exit Page بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Configure the exit page that should be visible after a user ends a Google Meet call. A user will have to click the 'Leave call' button from Google Meet to then be redirected to the other page. This is useful if you always need to visit the same page after every meeting, or have a similar requirement. The exit page can be configurable from the extensions' Options page. You can also configure if the exit page needs to open in a new tab or the same tab.
معلومات أساسية عن التمديد
الاسم | Google Meet Exit Page |
ID | bjfoplibeabdkfmbanlocafjlbbimgai |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/google-meet-exit-page/bjfoplibeabdkfmbanlocafjlbbimgai |
الوصف | Configure the exit page after ending a Google Meet call. |
حجم الملف | 10.09 KB |
عدد التثبيتات | 20 |
النسخة الحالية | 0.0.5 |
آخر تحديث | 2022-07-11 |
تاريخ النشر | 2022-07-05 |
المطور | https://clydedsouza.net |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/ClydeDz/google-meet-exit-page-chrome-extension |
عنوان صفحة المساعدة | https://github.com/ClydeDz/google-meet-exit-page-chrome-extension/issues/new/choose |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Google Meet Exit Page", "description": "Configure the exit page after ending a Google Meet call.", "version": "0.0.5", "author": "Clyde D'Souza", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "options_page": "options.html", "permissions": [ "storage" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/meet.google.com\/*" ], "js": [ "content_scripts.js" ] } ] } |