Mailto with signature for Gmail

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

Mailto with signature for Gmail क्या है?

Mailto with signature for Gmail SalesPreso द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A minimal extension which preserves the signature in gmail when following mailto: links"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Mailto with signature for Gmail एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Mailto with signature for Gmail Mailto with signature for Gmail
ID mbepkdkdoadkgmcmpgcigonccgoegagk
आधिकारिक URL https://chromewebstore.google.com/detail/mailto-with-signature-for/mbepkdkdoadkgmcmpgcigonccgoegagk
विवरण A minimal extension which preserves the signature in gmail when following mailto: links
फ़ाइल का आकार 74.86 KB
स्थापना संख्या 54
वर्तमान संस्करण 1.01
अंतिम अपडेट 2019-05-14
प्रकाशन तिथि 2019-05-13
डेवलपर SalesPreso
भुगतान के प्रकार free
समर्थित भाषाएँ 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\/*"
    ]
}