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.

Что такое Send+Tag for Gmail?

Send+Tag for Gmail - это расширение Chrome, разработанное PendarLabs.com, и его основная функция - "This is a simple extension to help you quickly tag emails you're sending out with your most commonly used label.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Send+Tag for Gmail

Скачайте файлы расширений Send+Tag for Gmail в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название Send+Tag for Gmail Send+Tag for Gmail
ID dgikghkkfnendpjahhbphoeflhfapabi
Официальный URL https://chrome.google.com/webstore/detail/send+tag-for-gmail/dgikghkkfnendpjahhbphoeflhfapabi
Описание This is a simple extension to help you quickly tag emails you're sending out with your most commonly used label.
Размер файла 103 KB
Количество установок 22
Текущая Версия 0.1.8
Последнее Обновление 2013-10-17
Дата публикации 2013-10-17
Рейтинг 4.67/5 Всего 3 оценок
Разработчик PendarLabs.com
Тип оплаты free
Поддерживаемые языки 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"
    }
}