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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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