// ==UserScript== // @name steam-wallpaperEngine-fix // @namespace http://tampermonkey.net/ // @version 0.1.4 // @description 近期小红车一些限制级内容创意工坊软锁,可以通过网页端隐藏的后两个选项打开。此插件用于修复隐藏的后两个选项内容 // @author 9WiSHao // @match https://store.steampowered.com/account/preferences // @icon https://www.google.com/s2/favicons?sz=64&domain=steampowered.com // @run-at document-body // @license ISC // @grant none // @downloadURL https://update.greasyfork.icu/scripts/474223/steam-wallpaperEngine-fix.user.js // @updateURL https://update.greasyfork.icu/scripts/474223/steam-wallpaperEngine-fix.meta.js // ==/UserScript== (function () { 'use strict'; window.onload = () => { const fix1 = document.querySelector('#main_content > div.two_column.right > div:nth-child(2) > div:nth-child(7)'); const fix2 = document.querySelector('#main_content > div.two_column.right > div:nth-child(2) > div:nth-child(8)'); if (!fix1 || !fix2) { alert('未正确打开设置页面'); return; } fix1.classList.remove('account_setting_not_customer_facing'); fix1.querySelector('label.account_manage_checkbox').innerHTML = '频繁的裸露画面或色情内容'; fix1.querySelector('span.account_setting_parenthetical').innerHTML = ` 主要展示裸露画面或色情主题的游戏或内容。勾选此复选框即表示您确认自己已至少年满 18 周岁。
查看示例产品\t `; fix2.classList.remove('account_setting_not_customer_facing'); fix2.querySelector('label.account_manage_checkbox').innerHTML = '仅限成人的色情内容'; fix2.querySelector('span.account_setting_parenthetical').innerHTML = ` 包含仅针对成人受众的性意味明显或露骨的游戏或内容。勾选此复选框即表示您确认自己已至少年满 18 周岁。
查看示例产品\t `; const tips = document.querySelector('#main_content > div.two_column.right > div:nth-child(2) > div.hspacer'); tips.textContent = `来自修复脚本的提示:最后两行打完勾之后刷新页面会重新没选中是正常现象。打完勾后不要刷新页面,直接关闭页面。此时直接去小红车搜索,比如打开限制级的情况下,搜 麻匪 红龙女王 能搜到的话,就说明修复成功了。`; tips.style.fontSize = 'small'; }; })();