Send+Tag for Gmail

This is a simple extension to help you quickly tag emails you're sending out with your most commonly used label.

Qu'est-ce que Send+Tag for Gmail ?

Send+Tag for Gmail est une extension Chrome développée par PendarLabs.com, et sa fonction principale est "This is a simple extension to help you quickly tag emails you're sending out with your most commonly used label.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Send+Tag for Gmail

Téléchargez les fichiers d'extension Send+Tag 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

                        Simply set the label name you use most often in the extension's options page (comma separate the tags to attach more than one tag). Then every time you open a Gmail compose window, you'll see a "Send & Tag" button, which will automatically apply your tag to the outgoing message.                    

Informations de Base sur l'Extension

Nom Send+Tag for Gmail Send+Tag for Gmail
ID dgikghkkfnendpjahhbphoeflhfapabi
URL Officiel https://chrome.google.com/webstore/detail/send+tag-for-gmail/dgikghkkfnendpjahhbphoeflhfapabi
Description This is a simple extension to help you quickly tag emails you're sending out with your most commonly used label.
Taille du Fichier 103 KB
Nombre d'Installations 22
Version Actuelle 0.1.8
Dernière Mise à Jour 2013-10-17
Date de Publication 2013-10-17
Évaluation 4.67/5 Total 3 Évaluations
Développeur PendarLabs.com
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Send+Tag for Gmail",
    "description": "This is a simple extension to help you quickly tag emails you're sending out with your most commonly used label.",
    "version": "0.1.8",
    "background": {
        "page": "background.html"
    },
    "options_page": "options.html",
    "permissions": [
        "https:\/\/mail.google.com\/",
        "http:\/\/mail.google.com\/",
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*",
                "http:\/\/mail.google.com\/*"
            ],
            "js": [
                "js\/jquery.js",
                "js\/follow.js"
            ]
        }
    ],
    "icons": {
        "16": "img\/icon_dark.png",
        "48": "img\/icon_big.png",
        "128": "img\/icon_big.png"
    },
    "browser_action": {
        "default_title": "Go to Gmail",
        "default_icon": "img\/icon_dark.png"
    }
}