Pesto (Pragli) Scheduler for Google Calendar
Schedule Google Calendar events in Pesto rooms with one click.
Что такое Pesto (Pragli) Scheduler for Google Calendar?
Pesto (Pragli) Scheduler for Google Calendar - это расширение Chrome, разработанное https://pesto.app, и его основная функция - "Schedule Google Calendar events in Pesto rooms with one click.".
Снимки экрана расширения
Скачать файл CRX расширения Pesto (Pragli) Scheduler for Google Calendar
Скачайте файлы расширений Pesto (Pragli) Scheduler for Google Calendar в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Pesto (formerly Pragli) is the digitally native, authentically human workplace. Pesto teams are organized into rooms. By default, rooms operate like a traditional conference call. Each room can be joined remotely and host audio, video, or screenshare. Rooms have can also host guests via guest links. Just copy and paste the link to join the room. This Chrome Extension adds an "Add Pesto" button to Google Calendar. When you either create a new event or edit an existing event in Google Calendar, this button will show up. When you click this button, Pestowill fill in the "where" and "description" fields for the calendar event with a guest link to a Pesto room. This can be a new room, or an existing room - you choose in your Pesto settings. Note that, in order to use the extension, you must have a Pesto account signed into at least one Pesto team.
Основная информация о расширении
Название | Pesto (Pragli) Scheduler for Google Calendar |
ID | ggglnbijagalkldjkgjnanbjpnkpmphh |
Официальный URL | https://chromewebstore.google.com/detail/pesto-pragli-scheduler-fo/ggglnbijagalkldjkgjnanbjpnkpmphh |
Описание | Schedule Google Calendar events in Pesto rooms with one click. |
Размер файла | 168 KB |
Количество установок | 91 |
Текущая Версия | 22.1.1 |
Последнее Обновление | 2022-01-15 |
Дата публикации | 2020-07-06 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | https://pesto.app |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://pesto.app |
URL страницы политики конфиденциальности | https://pesto.app/privacy-tos |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "description": "__MSG_appDescription__", "version": "22.1.1", "short_name": "__MSG_appShortName__", "manifest_version": 2, "default_locale": "en", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "background": { "scripts": [ "scripts\/background.js" ] }, "permissions": [], "content_security_policy": "script-src 'self' https:\/\/www.gstatic.com\/ https:\/\/*.firebaseio.com https:\/\/www.googleapis.com; object-src 'self'", "content_scripts": [ { "matches": [ "https:\/\/calendar.google.com\/*" ], "css": [ "styles\/contentscript.css" ], "js": [ "scripts\/contentscript.js" ], "run_at": "document_end", "all_frames": false } ] } |