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 - это расширение Chrome, разработанное https://equaltime.io, и его основная функция - "Easily see the average cost of meetings you schedule on Google Calendar.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Cost Of Meeting for Google Calendar

Скачайте файлы расширений Cost Of Meeting for Google Calendar в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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"
        }
    ]
}