Distinguish between images and links on Twitter
当前为
/* ==UserStyle==
@name Twitter Zoom Cursor
@description Distinguish between images and links on Twitter
@author chocolateboy
@copyright chocolateboy
@version 0.0.1
@namespace https://github.com/chocolateboy/userscripts
@license GPL: http://www.gnu.org/copyleft/gpl.html
==/UserStyle== */
@-moz-document domain("twitter.com"), domain("mobile.twitter.com") {
a[href^="/"][role="link"][href$="/photo/1"],
a[href^="/"][role="link"][href$="/photo/2"],
a[href^="/"][role="link"][href$="/photo/3"],
a[href^="/"][role="link"][href$="/photo/4"] {
cursor: zoom-in !important;
}
}