您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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.1.0
- @namespace https://github.com/chocolateboy/userscripts
- @license GPL
- ==/UserStyle== */
- @-moz-document url-prefix("https://twitter.com/"), url-prefix("https://mobile.twitter.com/"), url-prefix("https://x.com/"), url-prefix("https://mobile.x.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;
- }
- }