Steam Gifting Scripts.

A script that makes gifting to one that already have the game possible.

  1. // ==UserScript==
  2. // @name Steam Gifting Scripts.
  3. // @namespace https://coding.net/u/sffxzzp
  4. // @version 0.03
  5. // @description A script that makes gifting to one that already have the game possible.
  6. // @author sffxzzp
  7. // @match *://store.steampowered.com/checkout/sendgift/*
  8. // @icon https://store.steampowered.com/favicon.ico
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. document.querySelectorAll('.friend_block').forEach(node => {
  13. if (node.classList.contains('disabled')) {
  14. node.classList.remove('disabled');
  15. node.querySelector('input').removeAttribute('disabled');
  16. }
  17. });
  18. })();

QingJ © 2025

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