Greasy Fork is available in English.
steam创意工坊 Wallpaper Engine:壁纸引擎 18+ 模糊化图片显示 前提是你能看到18+内容 ;
// ==UserScript==
// @name steam创意工坊模糊化图片显示 Wallpaper Engine:壁纸引擎
// @namespace
// @version 2024-01-01
// @description steam创意工坊 Wallpaper Engine:壁纸引擎 18+ 模糊化图片显示 前提是你能看到18+内容 ;
// @author yydy777
// @match *://steamcommunity.com/*
// @grant none
// @license GPL License
// ==/UserScript==
(function() {
'use strict';
var elements = document.querySelectorAll(".ugc.has_adult_content");
Array.from(elements).forEach(function(element) {
element.classList.remove("has_adult_content");
});
})();