您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Allows you to send Steam gifts to friends even if they already own it.
// ==UserScript== // @name:de Steam: Geschenke an Freunde senden, die das Spiel bereits besitzen // @name Steam: Send gifts to friends who already own them // @namespace http://store.steampowered.com/ // @description:de Erlaubt es dir, Steam-Geschenke an Freunde zu senden, die das Spiel bereits besitzen. // @description Allows you to send Steam gifts to friends even if they already own it. // @match https://checkout.steampowered.com/checkout/sendgift/* // @match https://checkout.steampowered.com/checkout/ // @match https://checkout.steampowered.com/checkout // @version 1.2 // @grant none // @inject-into content // @run-at document-end // @license MIT // ==/UserScript== (function () { "use strict"; for (const button of document.getElementsByName("friend_radio")) { button.disabled = false; } })();