When2meet Selector
Add functionality to the when2meet scheduling site, allowing users to see individual and combinations of schedules more easily.
Что такое When2meet Selector?
When2meet Selector - это расширение Chrome, разработанное Unknown, и его основная функция - "Add functionality to the when2meet scheduling site, allowing users to see individual and combinations of schedules more easily.".
Снимки экрана расширения
Скачать файл CRX расширения When2meet Selector
Скачайте файлы расширений When2meet Selector в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
A simple extension that provides clearer ways to see schedules on the popular when2meet scheduling site by allowing users to see individual people's schedules, as well as combinations of people.
Основная информация о расширении
Название | When2meet Selector |
ID | fpjipfpdolohbejiljiaapgeehidkfnp |
Официальный URL | https://chromewebstore.google.com/detail/when2meet-selector/fpjipfpdolohbejiljiaapgeehidkfnp |
Описание | Add functionality to the when2meet scheduling site, allowing users to see individual and combinations of schedules more easily. |
Размер файла | 54.11 KB |
Количество установок | 125 |
Текущая Версия | 1.0.0 |
Последнее Обновление | 2022-05-04 |
Дата публикации | 2022-05-03 |
Разработчик | Unknown |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "When2meet Selector", "description": "Add functionality to the when2meet scheduling site, allowing users to see individual and combinations of schedules more easily.", "version": "1.0.0", "icons": { "128": "128.png" }, "action": { "default_icon": "128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.when2meet.com\/*" ], "js": [ "inject.js" ] } ], "web_accessible_resources": [ { "resources": [ "menu.js" ], "matches": [ "https:\/\/www.when2meet.com\/*" ] } ] } |