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.”。
擴展截圖
下載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. 擴展基本資訊
| 名稱 | |
| ID | dgikghkkfnendpjahhbphoeflhfapabi |
| 官方網址 | 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"
}
} | |