Mailto with signature for Gmail

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

Qu'est-ce que Mailto with signature for Gmail ?

Mailto with signature for Gmail est une extension Chrome développée par SalesPreso, et sa fonction principale est "A minimal extension which preserves the signature in gmail when following mailto: links".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Mailto with signature for Gmail

Téléchargez les fichiers d'extension Mailto with signature for Gmail au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Mailto with signature for Gmail Mailto with signature for Gmail
ID mbepkdkdoadkgmcmpgcigonccgoegagk
URL Officiel https://chromewebstore.google.com/detail/mailto-with-signature-for/mbepkdkdoadkgmcmpgcigonccgoegagk
Description A minimal extension which preserves the signature in gmail when following mailto: links
Taille du Fichier 74.86 KB
Nombre d'Installations 54
Version Actuelle 1.01
Dernière Mise à Jour 2019-05-14
Date de Publication 2019-05-13
Développeur SalesPreso
Type de Paiement free
Langues Prises en Charge 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\/*"
    ]
}