您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
UX designers are awesome, they can play nicely with opacity, but I want to see full images without hurting my eyes
// ==UserScript== // @name Disable image/title overlapping on mobile on notebookcheck // @namespace shitkiller // @match https://www.notebookcheck.net/* // @match https://www.notebookcheck.com/* // @description UX designers are awesome, they can play nicely with opacity, but I want to see full images without hurting my eyes // @grant none // @version 1.0 // @author shit-killer // ==/UserScript== // It can and MUST be implemented in Stylus, but I have no time to explore this const style = document.createElement('style'); document.head.appendChild(style); style.innerHTML = ` @media only screen and (max-width: 450px) { .introa_rm_img { max-height: initial; min-height: auto; } `;