您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Hide only the soundtrack DLCs from the "CONTENT FOR THIS GAME" list on the game's Steam page.
// ==UserScript== // @name Hide Steam Soundtrack DLCs // @namespace EY4WE/hide-steam-soundtrack-dlcs // @version 0.0.2 // @description Hide only the soundtrack DLCs from the "CONTENT FOR THIS GAME" list on the game's Steam page. // @author EY4WE // @match https://store.steampowered.com/app/* // @license GPL-3.0 // @grant none // ==/UserScript== (function() { 'use strict'; // サウンドトラックDLCのブロックを隠す var dlcElements = document.querySelectorAll('.ds_options, .game_area_dlc_row'); dlcElements.forEach(function(el) { var text = el.textContent.toLowerCase(); if (text.includes('soundtrack') || el.textContent.includes('サウンドトラック')) { el.style.display = 'none'; } }); })();