Gmail Domain Highlighter
Visually indicates the type of email domain in Gmail.
Τι είναι το Gmail Domain Highlighter;
Το Gmail Domain Highlighter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον berndverst, και η κύρια λειτουργία του είναι "Visually indicates the type of email domain in Gmail.".
Λήψη αρχείου CRX της επέκτασης Gmail Domain Highlighter
Λήψη αρχείων επέκτασης Gmail Domain Highlighter σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Automatically highlights email addresses based on their domain in Gmail. You can define three domain RegEx patterns (including negation) to highlight email address in red, blue or green. Example: Ever accidentally emailed somebody outside of your company? Now you can make sure that external addresses look clearly different to avoid this problem. Simply mark all email addresses outside of your company as red, use the following negated RegEx Pattern: ^((?!(company.com|companyalias.com)).)*$ where company.com and companyalias.com are email domains of your company.
Βασικές Πληροφορίες Επέκτασης
Όνομα | ![]() |
ID | ajfgpjfndlbicmphdbgbhcfjmmbkcbpa |
Επίσημο URL | https://chrome.google.com/webstore/detail/gmail-domain-highlighter/ajfgpjfndlbicmphdbgbhcfjmmbkcbpa |
Περιγραφή | Visually indicates the type of email domain in Gmail. |
Μέγεθος Αρχείου | 34.06 KB |
Αριθμός Εγκαταστάσεων | 34 |
Τρέχουσα Έκδοση | 0.0.1 |
Τελευταία Ενημέρωση | 2015-08-29 |
Ημερομηνία Δημοσίευσης | 2015-08-29 |
Προγραμματιστής | berndverst |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/berndverst/gmail-domain-highlighter |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Gmail Domain Highlighter", "description": "Visually indicates the type of email domain in Gmail.", "version": "0.0.1", "homepage_url": "https:\/\/github.com\/berndverst", "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/mail\/*", "https:\/\/www.google.com\/calendar\/*" ], "js": [ "jquery-2.1.4.min.js", "domain-highlighter.js" ] } ], "options_page": "options.html", "permissions": [ "tabs", "storage" ] } |