Twitter Zoom Cursor

Distinguish between images and links on Twitter

As of 17. 01. 2021. See the latest version.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

/* ==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 url-prefix("https://twitter.com/"), url-prefix("https://mobile.twitter.com/") {
    a[role="link"][href^="/"][href$="/photo/1"],
    a[role="link"][href^="/"][href$="/photo/2"],
    a[role="link"][href^="/"][href$="/photo/3"],
    a[role="link"][href^="/"][href$="/photo/4"] {
        cursor: zoom-in !important;
    }
}