您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Steam Store Personal Review Move, The Personal Review On Top Of The Game Description Will Move Under The Game Description. Steam商店的个人评论会移动到游戏描述的下方。
// ==UserScript== // @name Steam Store Personal Review Move // @namespace http://tampermonkey.net/ // @version 1.1 // @description Steam Store Personal Review Move, The Personal Review On Top Of The Game Description Will Move Under The Game Description. Steam商店的个人评论会移动到游戏描述的下方。 // @author Martin______X // @match https://store.steampowered.com/app/* // @icon https://www.google.com/s2/favicons?sz=64&domain=steampowered.com // @grant none // @license MIT // ==/UserScript== const moveInterval = setInterval(() => { let owned = document.getElementsByClassName("game_area_already_owned page_content")[0]; let play_stats = document.getElementsByClassName("game_area_play_stats")[0]; let page_contents = document.getElementsByClassName("page_content"); let page_content = null; for (let i = 0; i < page_contents.length; i++) { let data_panel = page_contents[i].getAttribute("data-panel"); if (data_panel == "[]") { page_content = page_contents[i]; } } if (owned && play_stats && page_content) { page_content.append(owned); page_content.append(play_stats); clearInterval(moveInterval); } }, 100);