您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Instantly access GAMES4U.ORG for game-related information and resources directly from Steam's purchase section.
// ==UserScript== // @name GAMES4U.ORG Quick Access Button for Steam // @version 1.0 // @description Instantly access GAMES4U.ORG for game-related information and resources directly from Steam's purchase section. // @match https://store.steampowered.com/app/* // @icon https://www.google.com/s2/favicons?domain=steampowered.com // @grant GM_xmlhttpRequest // @homepageURL https://gf.qytechs.cn/en/scripts/511589-games4u-org-quick-access-button-for-steam // @namespace https://gf.qytechs.cn/users/1290286 // ==/UserScript== (() => { 'use strict'; const headerEl = document.querySelector('.apphub_HeaderStandardTop'); if (!headerEl) return; let itemID = window.location.pathname.split('/')[2]; let games4uUrl = `https://games4u.org/?s=${itemID}`; let el = document.createElement('div'); el.classList.add('apphub_OtherSiteInfo'); el.style['margin-left'] = '1rem'; el.innerHTML = ` <a class="btnv6_blue_hoverfade btn_medium" href="${games4uUrl}" target="_blank"> <span>View on GAMES4U.ORG</span> </a> `; const existingEl = document.querySelector('.apphub_OtherSiteInfo'); if (existingEl) { headerEl.insertBefore(el, existingEl); } else { headerEl.appendChild(el); } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址