Mail Boss Scheduler for Gmail

Recurring email scheduler for Gmail

Mail Boss Scheduler for Gmail là gì?

Mail Boss Scheduler for Gmail là một tiện ích mở rộng Chrome được phát triển bởi https://mailboss.org, và tính năng chính của nó là "Recurring email scheduler for Gmail".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Mail Boss Scheduler for Gmail

Tải xuống các tệp mở rộng Mail Boss Scheduler for Gmail dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Mail Boss Scheduler for Gmail Mail Boss Scheduler for Gmail
ID amkkoimhfpljblhfjnkdidlfehhdfnli
URL Chính Thức https://chromewebstore.google.com/detail/mail-boss-scheduler-for-g/amkkoimhfpljblhfjnkdidlfehhdfnli
Mô tả Recurring email scheduler for Gmail
Kích Thước Tệp 354 KB
Số Lần Cài Đặt 1,647
Phiên Bản Hiện Tại 1.12.0
Cập Nhật Lần Cuối 2022-08-15
Ngày Phát Hành 2020-07-04
Đánh Giá 4.00/5 Tổng số 6 Đánh Giá
Nhà Phát Triển https://mailboss.org
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.mailboss.org
URL Trang Trợ Giúp https://groups.google.com/forum/#!forum/mailboss
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}