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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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