Vowel
Allows you to schedule Vowel meetings easily from Google Calendar.
Что такое Vowel?
Vowel - это расширение Chrome, разработанное https://vowel.com, и его основная функция - "Allows you to schedule Vowel meetings easily from Google Calendar.".
Снимки экрана расширения
Скачать файл CRX расширения Vowel
Скачайте файлы расширений Vowel в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
The Vowel Chrome Extension allows users to create Vowel links directly in their Google Calendars. Once installed, creating and editing Google Calendar events will include a button to "Add a Vowel Meeting".
Основная информация о расширении
Название | Vowel |
ID | npeeeceaaillpkbjdkgofmhnnloimihf |
Официальный URL | https://chromewebstore.google.com/detail/vowel/npeeeceaaillpkbjdkgofmhnnloimihf |
Описание | Allows you to schedule Vowel meetings easily from Google Calendar. |
Размер файла | 431 KB |
Количество установок | 3,561 |
Текущая Версия | 1.1.5 |
Последнее Обновление | 2023-05-24 |
Дата публикации | 2020-05-05 |
Рейтинг | 5.00/5 Всего 14 оценок |
Разработчик | https://vowel.com |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://www.vowel.com |
URL страницы помощи | https://help.vowel.com/en/collections/2059983-vowel-faq |
URL страницы политики конфиденциальности | https://www.vowel.com/legal/privacy-policy |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.1.5", "name": "Vowel", "manifest_version": 3, "description": "Allows you to schedule Vowel meetings easily from Google Calendar.", "icons": { "16": "images\/logo_16.png", "32": "images\/logo_32.png", "48": "images\/logo_48.png", "128": "images\/logo_128.png" }, "background": { "service_worker": "background.js" }, "host_permissions": [ "*:\/\/*.vowel.com\/*" ], "permissions": [ "storage", "cookies" ], "omnibox": { "keyword": "vowel" }, "content_scripts": [ { "matches": [ "https:\/\/calendar.google.com\/calendar\/*" ], "js": [ "calendar.js" ], "all_frames": false, "run_at": "document_end" }, { "matches": [ "*:\/\/*.vowel.com\/*" ], "js": [ "vowelWebAppInject.js" ], "all_frames": false, "run_at": "document_start" } ], "web_accessible_resources": [ { "resources": [ "\/images\/logo.svg" ], "matches": [ "https:\/\/*\/*" ] }, { "resources": [ "\/vowelWebApp.js" ], "matches": [ "*:\/\/*.vowel.com\/*" ] } ], "action": { "default_popup": "popup.html" }, "minimum_chrome_version": "88" } |