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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This is a simple extension to help you quickly tag emails you're sending out with your most commonly used label."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Send+Tag for Gmail एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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.
एक्सटेंशन की मूल जानकारी
नाम | |
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" } } |