GAMES4U.ORG Quick Access Button for Steam

Instantly access GAMES4U.ORG for game-related information and resources directly from Steam's purchase section.

  1. // ==UserScript==
  2. // @name GAMES4U.ORG Quick Access Button for Steam
  3. // @version 1.0
  4. // @description Instantly access GAMES4U.ORG for game-related information and resources directly from Steam's purchase section.
  5. // @match https://store.steampowered.com/app/*
  6. // @icon https://www.google.com/s2/favicons?domain=steampowered.com
  7. // @grant GM_xmlhttpRequest
  8. // @homepageURL https://gf.qytechs.cn/en/scripts/511589-games4u-org-quick-access-button-for-steam
  9. // @namespace https://gf.qytechs.cn/users/1290286
  10. // ==/UserScript==
  11.  
  12. (() => {
  13. 'use strict';
  14.  
  15. const headerEl = document.querySelector('.apphub_HeaderStandardTop');
  16. if (!headerEl) return;
  17.  
  18. let itemID = window.location.pathname.split('/')[2];
  19. let games4uUrl = `https://games4u.org/?s=${itemID}`;
  20.  
  21. let el = document.createElement('div');
  22. el.classList.add('apphub_OtherSiteInfo');
  23. el.style['margin-left'] = '1rem';
  24.  
  25. el.innerHTML = `
  26. <a class="btnv6_blue_hoverfade btn_medium" href="${games4uUrl}" target="_blank">
  27. <span>View on GAMES4U.ORG</span>
  28. </a>
  29. `;
  30.  
  31. const existingEl = document.querySelector('.apphub_OtherSiteInfo');
  32. if (existingEl) {
  33. headerEl.insertBefore(el, existingEl);
  34. } else {
  35. headerEl.appendChild(el);
  36. }
  37.  
  38. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址