cxw42 / TabFern

Google Chrome extension for saving and restoring sets of tabs, and for switching between windows and tabs from a vertical, grouped list.
https://cxw42.github.io/TabFern/
Other
170 stars 29 forks source link

How to get rid of Chrome link preview (if you want) #133

Open Procyon-b opened 6 years ago

Procyon-b commented 6 years ago

When the mouse hovers over tab links, or the option button, chrome displays a link preview at the bottom of the window. If you want to get rid of this there is a simple solution. If the href attribute is not used (an onclick event is doing all the job), you remove the attribute completely. A consequence is that the mouse pointer doesn't change to the "pointer" icon. You'll have to style the element (:hover and cursor: pointer;). Another consequence is that you can use all types of tags, not only <a>.

cxw42 commented 6 years ago

Thanks for the idea! Related to #104.