Sleazy Fork is available in English.

解除国区steam创意工坊物品展示图的模糊处理

此脚本只作用于网页steam创意工坊;对于steam客户端的创意工坊中被模糊处理过的图片,可以将图片长按并且外拖一下,就能看到通透的原图。

// ==UserScript==
// @name         解除国区steam创意工坊物品展示图的模糊处理
// @description  此脚本只作用于网页steam创意工坊;对于steam客户端的创意工坊中被模糊处理过的图片,可以将图片长按并且外拖一下,就能看到通透的原图。
// @namespace    none
// @version      2.0
// @author       none
// @match        *://steamcommunity.com/*
// @icon         none
// @grant        none
// @license      none
// ==/UserScript==

(
    function(){
        var target = document.querySelectorAll('[class="ugc has_adult_content"]')
        target.forEach(function(element){element.setAttribute('class', 'ugc');})
              }
)
();