Here Calendar

Here.fm integration with Google Calendar

Что такое Here Calendar?

Here Calendar - это расширение Chrome, разработанное https://here.fm, и его основная функция - "Here.fm integration with Google Calendar".

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

screenshot
screenshot

Скачать файл CRX расширения Here Calendar

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

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

                        Change up the way you get together with your friends with Here - a real-time, shared canvas where you can meet up on video, decorate with pics and GIFs, draw, screenshare, and more -- all in Chrome at here.fm.

This extension provides a simple way to schedule meetings in a Here room, directly from Google Calendar. Book meetings, schedule social events, and change rooms with a couple clicks.                    

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

Название Here Calendar Here Calendar
ID nngnogkbdoeejopcdkclmmkcbefggmed
Официальный URL https://chromewebstore.google.com/detail/here-calendar/nngnogkbdoeejopcdkclmmkcbefggmed
Описание Here.fm integration with Google Calendar
Размер файла 24.08 KB
Количество установок 2,591
Текущая Версия 1.0.6
Последнее Обновление 2022-08-11
Дата публикации 2020-08-21
Рейтинг 5.00/5 Всего 21 оценок
Разработчик https://here.fm
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://here.fm
URL страницы помощи https://help.here.fm
URL страницы политики конфиденциальности https://here.fm/privacy.html
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Here Calendar",
    "version": "1.0.6",
    "description": "Here.fm integration with Google Calendar",
    "externally_connectable": {
        "matches": [
            "*:\/\/here.fm\/*"
        ]
    },
    "background": {
        "scripts": [
            "main.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/calendar.google.com\/*",
                "*:\/\/here.fm\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "icons": {
        "128": "128x128.png",
        "48": "48x48.png",
        "16": "16x16.png"
    },
    "manifest_version": 2
}