Mailto with signature for Gmail

A minimal extension which preserves the signature in gmail when following mailto: links

Co je Mailto with signature for Gmail?

Mailto with signature for Gmail je rozšíření Chrome vyvinuté SalesPreso, a jeho hlavní funkcí je „A minimal extension which preserves the signature in gmail when following mailto: links“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Mailto with signature for Gmail

Stáhněte si soubory rozšíření Mailto with signature for Gmail ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        This extension preserves the signature you have configured in the Gmail web client when following mailto: links in your browser, or if your browser is configured to handle the mailto: protocol.                    

Základní Informace o Rozšíření

Název Mailto with signature for Gmail Mailto with signature for Gmail
ID mbepkdkdoadkgmcmpgcigonccgoegagk
Oficiální URL https://chromewebstore.google.com/detail/mailto-with-signature-for/mbepkdkdoadkgmcmpgcigonccgoegagk
Popis A minimal extension which preserves the signature in gmail when following mailto: links
Velikost souboru 74.86 KB
Počet instalací 54
Aktuální Verze 1.01
Poslední Aktualizace 2019-05-14
Datum Vydání 2019-05-13
Vývojář SalesPreso
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Mailto with signature for Gmail",
    "short_name": "gmailsignature",
    "version": "1.01",
    "author": "James Macpherson ",
    "description": "A minimal extension which preserves the signature in gmail when following mailto: links",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "js": [
                "extensionInjector.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "js": [
                "stripBodyBefore.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "extension.js",
        "gmail.js",
        "jquery-1.10.2.min.js"
    ],
    "icons": {
        "16": "sp_icon_16.png",
        "48": "sp_icon_48.png",
        "128": "sp_icon_128.png"
    },
    "permissions": [
        "https:\/\/mail.google.com\/*"
    ]
}