Cost Of Meeting for Google Calendar

Easily see the average cost of meetings you schedule on Google Calendar.

Cost Of Meeting for Google Calendar란 무엇입니까?

Cost Of Meeting for Google Calendar은(는) https://equaltime.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily see the average cost of meetings you schedule on Google Calendar."입니다.

확장 프로그램 스크린샷

screenshot

Cost Of Meeting for Google Calendar 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Equal Time's Cost of Meeting extension lets you easily see the average cost of meetings you schedule on Google Calendar. Try it free today!

By installing the app, you accept our privacy policy ( https://equaltime.io/privacy) and Terms of Use (https://www.equaltime.io/terms )

We also maintain an Equal Time Chrome extension for Google Meet (https://chrome.google.com/webstore/detail/equal-time-for-google-mee/dngdopifpnnjoochjeodonmchkmkdpga) and an Equal Time app for Zoom (https://marketplace.zoom.us/apps/c0dH9vZeSiyqP7bVB-o-0Q). Check them out!                    

확장 프로그램 기본 정보

이름 Cost Of Meeting for Google Calendar Cost Of Meeting for Google Calendar
ID hjclbcpeebomhcnfkmbfefcjcfplhbbo
공식 URL https://chromewebstore.google.com/detail/cost-of-meeting-for-googl/hjclbcpeebomhcnfkmbfefcjcfplhbbo
설명 Easily see the average cost of meetings you schedule on Google Calendar.
파일 크기 74.56 KB
설치 횟수 23
현재 버전 1.0.1
최근 업데이트 2023-09-11
출시 날짜 2023-09-06
평점 4.33/5 총 6 개의 평점
개발자 https://equaltime.io
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://equaltime.io
도움말 페이지 URL https://equaltime.io/contact/
개인정보 보호 정책 페이지 URL https://www.equaltime.io/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Easily see the average cost of meetings you schedule on Google Calendar.",
    "manifest_version": 3,
    "name": "Cost Of Meeting for Google Calendar",
    "author": "Equalicert",
    "version": "1.0.1",
    "homepage_url": "https:\/\/equaltime.io",
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "identity",
        "identity.email"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/calendar.google.com\/*"
            ],
            "js": [
                "content.js",
                "sentry.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_start"
        }
    ]
}