您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Makes the Steam app pages wider, meaning you can actually see the video player contents without having to make it full screen!
// ==UserScript== // @name Steam - Wider Content // @namespace https://store.steampowered.com // @version 0.2 // @description Makes the Steam app pages wider, meaning you can actually see the video player contents without having to make it full screen! // @license MIT // @match https://store.steampowered.com/app/* // @icon https://www.google.com/s2/favicons?domain=steampowered.com // @grant none // @require https://greasyfork.org/scripts/35370-add-css/code/Add_CSS.js?version=598682 // @run-at document-start // ==/UserScript== (function() { 'use strict'; AddCss (` .page_content, .queue_ctn, div#store_header .content, div#global_header .content { width: 80% !important; } .leftcol, .review_box .rightcol { width: 70% !important; } .rightcol, .review_box .leftcol { width: 25% !important; } .apphub_HomeHeaderContent { max-width: none; } `); })();