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”。

扩展截图

screenshot

下载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 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"
    }
}