您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Restrict image size on mastodon.social/
// ==UserScript== // @name Mastodon media Resizer // @description Restrict image size on mastodon.social/ // @match https://mastodon.social/* // @grant GM_addStyle // @version 0.0.1.20250524153400 // @namespace https://greasyfork.org/users/1435046 // ==/UserScript== GM_addStyle(` .media-gallery, .video-player { aspect-ratio: unset !important; } img, video { //max-width: 100px !important; max-height: 100px !important; object-fit: contain !important; } .zoomable-image img, .gifv video { max-width: 100% !important; max-height: 80% !important; } .fullscreen video { max-height: unset !important } `);