Gmail Domain Highlighter
Visually indicates the type of email domain in Gmail.
Gmail Domain Highlighter क्या है?
Gmail Domain Highlighter berndverst द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Visually indicates the type of email domain in Gmail."।
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Gmail Domain Highlighter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } |