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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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\/*"
    ]
}