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