Mail Boss Scheduler for Gmail
Recurring email scheduler for Gmail
What is Mail Boss Scheduler for Gmail?
Mail Boss Scheduler for Gmail is a Chrome extension developed by https://mailboss.org, and its main feature is "Recurring email scheduler for Gmail".
Extension Screenshots
Download Mail Boss Scheduler for Gmail Extension CRX File
Download Mail Boss Scheduler for Gmail extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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!
Extension Basic Information
Name | Mail Boss Scheduler for Gmail |
ID | amkkoimhfpljblhfjnkdidlfehhdfnli |
Official URL | https://chromewebstore.google.com/detail/mail-boss-scheduler-for-g/amkkoimhfpljblhfjnkdidlfehhdfnli |
Description | Recurring email scheduler for Gmail |
File Size | 354 KB |
Installation Count | 1,647 |
Current Version | 1.12.0 |
Last Updated | 2022-08-15 |
Publish Date | 2020-07-04 |
Rating | 4.00/5 Total 6 Ratings |
Developer | https://mailboss.org |
[email protected] | |
Payment Type | free |
Extension Website | https://www.mailboss.org |
Help Page URL | https://groups.google.com/forum/#!forum/mailboss |
Supported Languages | 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" } } |