25 Super Reply

Reply to any email in 1 click

25 Super Reply là gì?

25 Super Reply là một tiện ích mở rộng Chrome được phát triển bởi 25 Superstars, và tính năng chính của nó là "Reply to any email in 1 click".

Ả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 25 Super Reply

Tải xuống các tệp mở rộng 25 Super Reply 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

                        Reply to any email in 1 click.                    

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

Tên 25 Super Reply 25 Super Reply
ID bffpbnbaijcbgacpipbpkdcknifodecm
URL Chính Thức https://chromewebstore.google.com/detail/25-super-reply/bffpbnbaijcbgacpipbpkdcknifodecm
Mô tả Reply to any email in 1 click
Kích Thước Tệp 528 KB
Số Lần Cài Đặt 84
Phiên Bản Hiện Tại 0.1.1
Cập Nhật Lần Cuối 2023-02-14
Ngày Phát Hành 2023-02-13
Nhà Phát Triển 25 Superstars
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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": [
                ""
            ]
        }
    ]
}