When2MeetGoogle

Autofill when to meets with your google calendar.

When2MeetGoogle란 무엇입니까?

When2MeetGoogle은(는) ryanreszetnik에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Autofill when to meets with your google calendar."입니다.

확장 프로그램 스크린샷

screenshot

When2MeetGoogle 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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"
        ]
    }
}