25 Super Reply

Reply to any email in 1 click

25 Super Reply란 무엇입니까?

25 Super Reply은(는) 25 Superstars에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Reply to any email in 1 click"입니다.

확장 프로그램 스크린샷

screenshot

25 Super Reply 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Reply to any email in 1 click.                    

확장 프로그램 기본 정보

이름 25 Super Reply 25 Super Reply
ID bffpbnbaijcbgacpipbpkdcknifodecm
공식 URL https://chromewebstore.google.com/detail/25-super-reply/bffpbnbaijcbgacpipbpkdcknifodecm
설명 Reply to any email in 1 click
파일 크기 528 KB
설치 횟수 84
현재 버전 0.1.1
최근 업데이트 2023-02-14
출시 날짜 2023-02-13
개발자 25 Superstars
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "25 Super Reply",
    "version": "0.1.1",
    "description": "Reply to any email in 1 click",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Mail.ai",
        "default_popup": "popup.html"
    },
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*",
                "https:\/\/inbox.google.com\/*"
            ],
            "run_at": "document_start",
            "js": [
                "contentScript.js"
            ],
            "css": [
                "extension.css"
            ]
        },
        {
            "matches": [
                "https:\/\/mail.google.com\/*",
                "https:\/\/inbox.google.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "contentInbox.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "gmailJsLoader.js",
                "extension.js",
                "gmailJsLoader.js.map",
                "extension.js.map"
            ],
            "matches": [
                ""
            ]
        }
    ]
}