Changes your cursor pointer when you hover over a link depending on the link type
Links distinguisher by shunlog
Details
Authorshunlog
LicenseNo License
Categoryuserstyles
Created
Updated
Size543 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Links distinguisher
@version 20240528.08.21
@namespace ?
@description Change your cursor depending on link type
==/UserStyle== */
@-moz-document url("") {
a[target="_blank"] {
cursor: alias !important;
}
a[href^="#"] {
cursor: crosshair !important;
}
/* You can also draw these icons to see the type right away,
but it might be ugly on some websites */
a[target="_blank"]::before {
/*content: "🔗";*/
}
a[href^="#"]::before {
/*content: "🧲";*/
}
}