Mail Boss Scheduler for Gmail
Recurring email scheduler for Gmail
Cos'è Mail Boss Scheduler for Gmail?
Mail Boss Scheduler for Gmail è un'estensione di Chrome sviluppata da https://mailboss.org, e la sua funzione principale è "Recurring email scheduler for Gmail".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Mail Boss Scheduler for Gmail
Scarica i file di estensione Mail Boss Scheduler for Gmail in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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!
Informazioni di Base sull'Estensione
Nome | Mail Boss Scheduler for Gmail |
ID | amkkoimhfpljblhfjnkdidlfehhdfnli |
URL Ufficiale | https://chromewebstore.google.com/detail/mail-boss-scheduler-for-g/amkkoimhfpljblhfjnkdidlfehhdfnli |
Descrizione | Recurring email scheduler for Gmail |
Dimensione del File | 354 KB |
Conteggio Installazioni | 1,647 |
Versione Corrente | 1.12.0 |
Ultimo Aggiornamento | 2022-08-15 |
Data di Pubblicazione | 2020-07-04 |
Valutazione | 4.00/5 Totale 6 Valutazioni |
Sviluppatore | https://mailboss.org |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://www.mailboss.org |
URL della Pagina di Aiuto | https://groups.google.com/forum/#!forum/mailboss |
Lingue Supportate | 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" } } |