Greasy Fork

Greasy Fork is available in English.

Steam 伪装成 蒸汽平台

中国人就用蒸汽平台

目前为 2023-03-08 提交的版本,查看 最新版本

// ==UserScript==
// @name Steam 伪装成 蒸汽平台
// @namespace userElaina
// @version 2023.03.08.1
// @description 中国人就用蒸汽平台
// @author userElaina
// @license MIT
// @match *://*.store.steampowered.com/*
// @grant 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';
    document.getElementsByClassName('home_page_gutter_giftcard')[0].height = 0;
})();