When2MeetGoogle
Autofill when to meets with your google calendar.
ما هو When2MeetGoogle؟
When2MeetGoogle هو إضافة Chrome تم تطويرها بواسطة ryanreszetnik، والميزة الرئيسية لها هي "Autofill when to meets with your google calendar.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة When2MeetGoogle
قم بتنزيل ملفات الامتداد When2MeetGoogle بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Filling out when2meets are always tedious so using When2MeetGoogle will allow you to fill out your availability based on your google calendar in one click! Just pressed the autofill button and it will be filled.
معلومات أساسية عن التمديد
الاسم | When2MeetGoogle |
ID | gmkejagepejdikcliicfegjjhdinacbo |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/when2meetgoogle/gmkejagepejdikcliicfegjjhdinacbo |
الوصف | Autofill when to meets with your google calendar. |
حجم الملف | 215 KB |
عدد التثبيتات | 122 |
النسخة الحالية | 1.1 |
آخر تحديث | 2023-02-07 |
تاريخ النشر | 2023-02-07 |
تقييم | 5.00/5 مجموع تقييمات 4 |
المطور | ryanreszetnik |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://when-2-meet-chrome.web.app |
عنوان صفحة المساعدة | https://when-2-meet-chrome.web.app |
عنوان صفحة سياسة الخصوصية | https://life-planner-fea8f.web.app/privacy |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "When2MeetGoogle", "description": "Autofill when to meets with your google calendar.", "version": "1.1", "manifest_version": 3, "icons": { "16": "logo192.png", "48": "logo192.png", "128": "logo192.png" }, "background": { "service_worker": ".\/static\/js\/background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.when2meet.com\/*" ], "js": [ ".\/static\/js\/content.js" ], "all_frames": false, "run_at": "document_end" } ], "content_security_policy": { "script-src": "self", "object-src": "self" }, "externally_connectable": { "matches": [ "*:\/\/*.google.com\/*" ] }, "permissions": [ "tabs", "identity" ], "optional_permissions": [], "oauth2": { "client_id": "391349501740-6hfprkdm7f5a9lmd0q7es9itrimqpt30.apps.googleusercontent.com", "scopes": [ "profile email", "https:\/\/www.googleapis.com\/auth\/calendar" ] } } |