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 هو إضافة Chrome تم تطويرها بواسطة SalesPreso، والميزة الرئيسية لها هي "A minimal extension which preserves the signature in gmail when following mailto: links".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Mailto with signature for Gmail

قم بتنزيل ملفات الامتداد Mailto with signature for Gmail بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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\/*"
    ]
}