Timezone Converter for Google Calendar

This extension helps the user easily convert between timezones while using Google Calendar.

Что такое Timezone Converter for Google Calendar?

Timezone Converter for Google Calendar - это расширение Chrome, разработанное nik.advani16, и его основная функция - "This extension helps the user easily convert between timezones while using Google Calendar.".

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

screenshot

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

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

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

                        This extension helps the user easily convert between timezones while using Google Calendar.                    

Основная информация о расширении

Название Timezone Converter for Google Calendar Timezone Converter for Google Calendar
ID llpjnojfbpbeccalkgbjhlohmmkchljp
Официальный URL https://chromewebstore.google.com/detail/timezone-converter-for-go/llpjnojfbpbeccalkgbjhlohmmkchljp
Описание This extension helps the user easily convert between timezones while using Google Calendar.
Размер файла 12.91 KB
Количество установок 212
Текущая Версия 0.2
Последнее Обновление 2022-08-13
Дата публикации 2022-08-10
Рейтинг 5.00/5 Всего 3 оценок
Разработчик nik.advani16
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Timezone Converter for Google Calendar",
    "version": "0.2",
    "web_accessible_resources": [
        {
            "resources": [
                "icon.png"
            ],
            "matches": [
                "https:\/\/calendar.google.com\/*"
            ]
        }
    ],
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/calendar.google.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ]
}