Skip to content

Just a little design suggestion #8

Open
@Diklabyte

Description

@Diklabyte

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:

row.querySelector(".domain").textContent = domain;

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 :)

Metadata

Metadata

Assignees

Labels

enhancementNew feature or request

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions