25 Super Reply

Reply to any email in 1 click

Apa itu 25 Super Reply?

25 Super Reply adalah ekstensi Chrome yang dikembangkan oleh 25 Superstars, dan fitur utamanya adalah "Reply to any email in 1 click".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi 25 Super Reply

Unduh file ekstensi 25 Super Reply dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        Reply to any email in 1 click.                    

Informasi Dasar Ekstensi

Nama 25 Super Reply 25 Super Reply
ID bffpbnbaijcbgacpipbpkdcknifodecm
URL Resmi https://chromewebstore.google.com/detail/25-super-reply/bffpbnbaijcbgacpipbpkdcknifodecm
Deskripsi Reply to any email in 1 click
Ukuran File 528 KB
Jumlah Instalasi 84
Versi Saat Ini 0.1.1
Terakhir Diperbarui 2023-02-14
Tanggal Publikasi 2023-02-13
Pengembang 25 Superstars
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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": [
                ""
            ]
        }
    ]
}