When2MeetGoogle
Autofill when to meets with your google calendar.
什麼是When2MeetGoogle?
When2MeetGoogle是由ryanreszetnik開發的Chrome擴展程式,該擴展的主要功能是“Autofill when to meets with your google calendar.”。
擴展截圖
下載When2MeetGoogle擴展crx文件
下載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 |
官方網址 | 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" ] } } |