您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Hides all screenshots from the steam friend activity and shows them back when you hover over them
// ==UserScript== // @name [Steam friend activity] Hide all screenshots behind a black square // @namespace http://tampermonkey.net/ // @version 1.0 // @description Hides all screenshots from the steam friend activity and shows them back when you hover over them // @author Greended // @match https://steamcommunity.com/id/* // @icon https://store.steampowered.com/favicon.ico // @grant GM_addStyle // @run-at document-start // @license MIT // ==/UserScript== (function () { 'use strict'; GM_addStyle(` .blotter_screenshot_gallery_image { filter: blur(15px); } .blotter_screenshot_image, .blotter_screenshot_gallery_image_selected { filter: brightness(0%); } .blotter_screenshot_gallery_image:hover, .blotter_screenshot_gallery_image_selected:hover, .blotter_screenshot_image:hover { filter: none; } `) })();