Makes the Steam app pages wider, meaning you can actually see the video player contents without having to make it full screen!
< 脚本 Steam - Wider Content 的反馈
Thanks for the feedback, updated with the changes suggested which has made it more consistent.
Currently this script does not work too well. Parts are not widened (top-most tabs, game title, user reviews), .leftcol and .rightcol are not next to eachother, one is under the other.
I suggest changing the code (also, making it easier by applying css at load time instead of searching for elements later and changing style attribute):
// @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;
}
` );
})();