// ==UserScript== // @name Steam 伪装成 蒸汽平台 // @namespace userElaina // @version 2023.03.08.3 // @description 中国人就用蒸汽平台 // @author userElaina // @license MIT // @match *://*.steampowered.com/* // @match *://*.steamcommunity.com/* // @grant none // @downloadURL none // ==/UserScript== (function () { document.title = document.title.replace(' Steam', 'Steam').replace('Steam ', 'Steam').replace('Steam', '蒸汽平台'); document.getElementById("logo_holder").childNodes[1].childNodes[1].src = 'https://raw.githubusercontent.com/userElaina/this-is-the-China-website/main/steam/logo.svg'; var st_giftcard = document.getElementsByClassName('home_page_gutter_giftcard'); if (st_giftcard.length > 0) { st_giftcard[0].height = 0; } })();