Gmail Select Sender Email

Gmail Select Sender Email

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

Merlin
Additional files are visible only to premium users

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/*"
      ]
    }
  ]
}