Mail Boss Scheduler for Gmail
Recurring email scheduler for Gmail
Что такое Mail Boss Scheduler for Gmail?
Mail Boss Scheduler for Gmail - это расширение Chrome, разработанное https://mailboss.org, и его основная функция - "Recurring email scheduler for Gmail".
Снимки экрана расширения
Скачать файл CRX расширения Mail Boss Scheduler for Gmail
Скачайте файлы расширений Mail Boss Scheduler for Gmail в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Mail Boss Scheduler is a Chrome extension companion to the MailBoss.org email scheduling service. It adds a "Schedule repeating" option next to the existing "Schedule send" option in Gmail's compose message window (click the down arrow on the "Send" button). The "Schedule repeating" option allows you to schedule recurring emails with just a few clicks. After installing this extension, you'll be taken to the Mail Boss web site in order to sign up for the service. It's free!
Основная информация о расширении
Название | Mail Boss Scheduler for Gmail |
ID | amkkoimhfpljblhfjnkdidlfehhdfnli |
Официальный URL | https://chromewebstore.google.com/detail/mail-boss-scheduler-for-g/amkkoimhfpljblhfjnkdidlfehhdfnli |
Описание | Recurring email scheduler for Gmail |
Размер файла | 354 KB |
Количество установок | 1,647 |
Текущая Версия | 1.12.0 |
Последнее Обновление | 2022-08-15 |
Дата публикации | 2020-07-04 |
Рейтинг | 4.00/5 Всего 6 оценок |
Разработчик | https://mailboss.org |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://www.mailboss.org |
URL страницы помощи | https://groups.google.com/forum/#!forum/mailboss |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Mail Boss Scheduler for Gmail", "short_name": "Mail Boss", "version": "1.12.0", "description": "Recurring email scheduler for Gmail", "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "host_permissions": [ "https:\/\/mail.google.com\/*" ], "action": { "default_popup": "options.html" }, "content_scripts": [ { "js": [ "index.js" ], "matches": [ "https:\/\/mail.google.com\/*" ], "all_frames": true } ], "icons": { "16": "images\/mailboss-icon-blue.png", "128": "images\/mailboss-icon-blue.png" } } |