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はPendarLabs.comによって開発されたChromeの拡張機能で、その主な機能は「This is a simple extension to help you quickly tag emails you're sending out with your most commonly used label.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Send+Tag for Gmail拡張機能のCRXファイルをダウンロード

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"
    }
}