Steam Gifting Scripts.

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

目前為 2017-10-10 提交的版本,檢視 最新版本

// ==UserScript==
// @name         Steam Gifting Scripts.
// @namespace    https://coding.net/u/sffxzzp
// @version      0.01
// @description  A script that makes gifting to one that already have the game possible.
// @author       sffxzzp
// @match        *://store.steampowered.com/checkout/sendgift/*
// @icon         http://steamcommunity.com/favicon.ico
// ==/UserScript==

(function() {
    var friends = document.getElementsByClassName('friend_block disabled');
    for (var i=0;i<friends.length;i++) {
        friends[i].getElementsByTagName('input')[0].removeAttribute("disabled");
        friends[i].classList.remove("disabled");
    }
})();

QingJ © 2025

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