Open
Description
I have noticed that all buttons have title tags, except the domain "button" in the popup.
For example …github.com
And those are clickable, but we don't see the information about this.
Yes we se a help mouse, but I guess with a title tag, we see detailed information what this actually does.
This is only a simply solution.
After this line:
Line 577 in e392a73
We can type:
row.querySelector(".domain").title = browser.i18n.getMessage("siteInfo_tooltip", domain);
Only the string is obsolet, because the middle-mouse-button doesn't work.
So we can replace this by a new one such as:
"siteInfo_tooltip": {
"message": "Left-click to show site information about \"$1\"…"
},
.Where the placeholder represents the domain.
So in the popup we see, when we hover on the domain, this:
Left-click to show site information about "github.com"…
The same in german:
"siteInfo_tooltip": {
"message": "Mit Linke Maustaste klicken um Seiteninformationen über \"$1\" aufzurufen…"
},
.
And for other languages, I hope you will get help :)