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.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου 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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
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" } } |