Twitter Zoom Cursor

Distinguish between images and links on Twitter

  1. /* ==UserStyle==
  2. @name Twitter Zoom Cursor
  3. @description Distinguish between images and links on Twitter
  4. @author chocolateboy
  5. @copyright chocolateboy
  6. @version 0.1.0
  7. @namespace https://github.com/chocolateboy/userscripts
  8. @license GPL
  9. ==/UserStyle== */
  10.  
  11. @-moz-document url-prefix("https://twitter.com/"), url-prefix("https://mobile.twitter.com/"), url-prefix("https://x.com/"), url-prefix("https://mobile.x.com/") {
  12. a[role="link"][href^="/"][href$="/photo/1"],
  13. a[role="link"][href^="/"][href$="/photo/2"],
  14. a[role="link"][href^="/"][href$="/photo/3"],
  15. a[role="link"][href^="/"][href$="/photo/4"] {
  16. cursor: zoom-in !important;
  17. }
  18. }