Mail Boss Scheduler for Gmail
Recurring email scheduler for Gmail
什麼是Mail Boss Scheduler for Gmail?
Mail Boss Scheduler for Gmail是由https://mailboss.org開發的Chrome擴展程式,該擴展的主要功能是“Recurring email scheduler for Gmail”。
擴展截圖
下載Mail Boss Scheduler for Gmail擴展crx文件
下載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 |
官方網址 | 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" } } |