您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Hide hero images from the redesigned GOG game pages. Puts the price box back in the old place. This changes should make the desktop browsing experience more pleasant.
当前为
// ==UserScript== // @name Hide GOG heroes // @description Hide hero images from the redesigned GOG game pages. Puts the price box back in the old place. This changes should make the desktop browsing experience more pleasant. // @namespace https://github.com/BattleMage // @homepage https://github.com/BattleMage/gog-anti-hero // @version 0.1.1 // @author BattleMage // @match https://www.gog.com/game/* // @grant GM_addStyle // ==/UserScript== (function() { 'use strict'; GM_addStyle('.productcard-player {display:none;}'); GM_addStyle('.product-actions {position: relative; width: auto; right: auto;}'); GM_addStyle('@media (min-width: 737px) { .productcard-basics {padding-top: 65px;} }'); let productPrice = document.getElementsByClassName('product-actions hide-when-content-is-expanded ng-scope')[0]; let sideColumn = document.getElementsByClassName('layout-side-col')[0]; let whyGog = sideColumn.getElementsByClassName('why-gog')[0]; let summarySection = document.getElementsByClassName('layout-side-col')[0].getElementsByClassName('content-summary-section')[0]; sideColumn.insertBefore( productPrice, whyGog ); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址