25 Super Reply

Reply to any email in 1 click

Wat is 25 Super Reply?

25 Super Reply is een Chrome-extensie ontwikkeld door 25 Superstars, en de belangrijkste functie is "Reply to any email in 1 click".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie 25 Super Reply

Download 25 Super Reply-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Reply to any email in 1 click.                    

Basisinformatie over de Extensie

Naam 25 Super Reply 25 Super Reply
ID bffpbnbaijcbgacpipbpkdcknifodecm
Officiële URL https://chromewebstore.google.com/detail/25-super-reply/bffpbnbaijcbgacpipbpkdcknifodecm
Beschrijving Reply to any email in 1 click
Bestandsgrootte 528 KB
Aantal Installaties 84
Huidige Versie 0.1.1
Laatst Bijgewerkt 2023-02-14
Publicatiedatum 2023-02-13
Ontwikkelaar 25 Superstars
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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": [
                ""
            ]
        }
    ]
}