Greasy Fork is available in English.

Steam Gifting Scripts.

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


Installer dette script?
// ==UserScript==// @name         Steam Gifting Scripts.// @namespace    https://coding.net/u/sffxzzp// @version      0.03// @description  A script that makes gifting to one that already have the game possible.// @author       sffxzzp// @match        *://store.steampowered.com/checkout/sendgift/*// @icon         https://store.steampowered.com/favicon.ico// ==/UserScript==(function() {document.querySelectorAll('.friend_block').forEach(node => {if (node.classList.contains('disabled')) {node.classList.remove('disabled');node.querySelector('input').removeAttribute('disabled');}});})();