Display Addresses in Account Menu

After going through the process of re-creating & reimporting my Metamask accounts into a new browser, I think this would make things a bit easier. I would like to be able to see the address of each account (in a monospace font) in the account menu between the account name and the balance. That way there would be a convenient list to keep the wallet account names straight for restoring later.

This can be done with a couple simple changes (based on chrome extension version 10.0.0):

In ./ui-1.js after i.default.createElement("div", {className: "account-menu__name"}, e.name || ""), insert i.default.createElement("div", {className: "account-menu__address"}, e.address || ""),

In .\index.css before .account-menu__balance { insert:

.account-menu__address {
  font-size: 0.81rem;
  font-family: ui-monospace;
  line-height: 140%;
  font-style: normal;
  font-weight: normal;
  color: #ddd;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 270px;
  margin-left: -62px;
}

Maybe more could be done than just this, such as an ‘paranoid account menu display’ option in settings to hide this. But, since these are public addresses and displayed elsewhere, I’m not convinced that showing them in the account menu presents much risk.