25 Super Reply

Reply to any email in 1 click

What is 25 Super Reply?

25 Super Reply is a Chrome extension developed by 25 Superstars, and its main feature is "Reply to any email in 1 click".

Extension Screenshots

screenshot

Download 25 Super Reply Extension CRX File

Download 25 Super Reply extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Reply to any email in 1 click.                    

Extension Basic Information

Name 25 Super Reply 25 Super Reply
ID bffpbnbaijcbgacpipbpkdcknifodecm
Official URL https://chromewebstore.google.com/detail/25-super-reply/bffpbnbaijcbgacpipbpkdcknifodecm
Description Reply to any email in 1 click
File Size 528 KB
Installation Count 84
Current Version 0.1.1
Last Updated 2023-02-14
Publish Date 2023-02-13
Developer 25 Superstars
Email [email protected]
Payment Type free
Supported Languages 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": [
                ""
            ]
        }
    ]
}