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