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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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 |
URL หน้าช่วยเหลือ | https://when-2-meet-chrome.web.app |
URL หน้านโยบายความเป็นส่วนตัว | 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" ] } } |