Mail Boss Scheduler for Gmail
Recurring email scheduler for Gmail
Was ist Mail Boss Scheduler for Gmail?
Mail Boss Scheduler for Gmail ist eine Chrome-Erweiterung, die von https://mailboss.org entwickelt wurde, und ihr Hauptmerkmal ist "Recurring email scheduler for Gmail".
Erweiterungsscreenshots
Mail Boss Scheduler for Gmail-Erweiterungs-CRX-Datei herunterladen
Laden Sie Mail Boss Scheduler for Gmail-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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!
Grundlegende Informationen zur Erweiterung
Name | Mail Boss Scheduler for Gmail |
ID | amkkoimhfpljblhfjnkdidlfehhdfnli |
Offizielle URL | https://chromewebstore.google.com/detail/mail-boss-scheduler-for-g/amkkoimhfpljblhfjnkdidlfehhdfnli |
Beschreibung | Recurring email scheduler for Gmail |
Dateigröße | 354 KB |
Installationsanzahl | 1,647 |
Aktuelle Version | 1.12.0 |
Letztes Update | 2022-08-15 |
Veröffentlichungsdatum | 2020-07-04 |
Bewertung | 4.00/5 Insgesamt 6 Bewertungen |
Entwickler | https://mailboss.org |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://www.mailboss.org |
Hilfeseite URL | https://groups.google.com/forum/#!forum/mailboss |
Unterstützte Sprachen | 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" } } |