Gmail Select Sender Email

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

Was ist Gmail Select Sender Email?

Gmail Select Sender Email ist eine Chrome-Erweiterung, die von Alex Burck entwickelt wurde, und ihr Hauptmerkmal ist "Allows you to easily copy the email of the sender by clicking on their name in Gmail.".

Erweiterungsscreenshots

screenshot

Gmail Select Sender Email-Erweiterungs-CRX-Datei herunterladen

Laden Sie Gmail Select Sender Email-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Gmail Select Sender Email Gmail Select Sender Email
ID koddicdefdjldmkdknloeemffdjbdblh
Offizielle URL https://chromewebstore.google.com/detail/gmail-select-sender-email/koddicdefdjldmkdknloeemffdjbdblh
Beschreibung Allows you to easily copy the email of the sender by clicking on their name in Gmail.
Dateigröße 46.69 KB
Installationsanzahl 103
Aktuelle Version 1.1
Letztes Update 2014-10-26
Veröffentlichungsdatum 2014-10-26
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Alex Burck
Zahlungsart free
Erweiterungswebsite https://github.com/burck1/Gmail-Select-Sender-Email
Hilfeseite URL https://github.com/burck1/Gmail-Select-Sender-Email/issues
Unterstützte Sprachen 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\/*"
            ]
        }
    ]
}