Gmail Select Sender Email

Allows you to easily copy the email of the sender by clicking on their name in Gmail.

Gmail Select Sender Email क्या है?

Gmail Select Sender Email Alex Burck द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Allows you to easily copy the email of the sender by clicking on their name in Gmail."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Gmail Select Sender Email एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This extension simply allows you to click on the name of the sender in an open gmail email in order to copy the email of the sender. When you click on the name of the sender it automatically changes the text to the senders email and highlights it. Then after you press crtl-c or command-c, it will revert back to the original text.

I built this because I found myself constantly hovering over the user's name, highlighting their email, and then copying it. THis is much easier.                    

एक्सटेंशन की मूल जानकारी

नाम Gmail Select Sender Email Gmail Select Sender Email
ID koddicdefdjldmkdknloeemffdjbdblh
आधिकारिक URL https://chromewebstore.google.com/detail/gmail-select-sender-email/koddicdefdjldmkdknloeemffdjbdblh
विवरण Allows you to easily copy the email of the sender by clicking on their name in Gmail.
फ़ाइल का आकार 46.69 KB
स्थापना संख्या 103
वर्तमान संस्करण 1.1
अंतिम अपडेट 2014-10-26
प्रकाशन तिथि 2014-10-26
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर Alex Burck
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/burck1/Gmail-Select-Sender-Email
सहायता पृष्ठ URL https://github.com/burck1/Gmail-Select-Sender-Email/issues
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gmail Select Sender Email",
    "version": "1.1",
    "manifest_version": 2,
    "description": "Allows you to easily copy the email of the sender by clicking on their name in Gmail.",
    "browser_action": {
        "name": "Copy Email",
        "icons": [
            "icon.png"
        ],
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "background.js"
            ],
            "matches": [
                "https:\/\/mail.google.com\/*"
            ]
        }
    ]
}