When2MeetGoogle

Autofill when to meets with your google calendar.

When2MeetGoogle là gì?

When2MeetGoogle là một tiện ích mở rộng Chrome được phát triển bởi ryanreszetnik, và tính năng chính của nó là "Autofill when to meets with your google calendar.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng When2MeetGoogle

Tải xuống các tệp mở rộng When2MeetGoogle dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên When2MeetGoogle When2MeetGoogle
ID gmkejagepejdikcliicfegjjhdinacbo
URL Chính Thức https://chromewebstore.google.com/detail/when2meetgoogle/gmkejagepejdikcliicfegjjhdinacbo
Mô tả Autofill when to meets with your google calendar.
Kích Thước Tệp 215 KB
Số Lần Cài Đặt 122
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2023-02-07
Ngày Phát Hành 2023-02-07
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển ryanreszetnik
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://when-2-meet-chrome.web.app
URL Trang Trợ Giúp https://when-2-meet-chrome.web.app
URL Trang Chính Sách Bảo Mật https://life-planner-fea8f.web.app/privacy
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}