您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Pops up the Steam product activation dialog when copying keys from bundle pages. Currently supports Humble Bundle, Indie Royale and Indie Gala. Obviously requires that Steam is installed but also that it's allowed as the handler of steam:// protocol messages.
当前为
// ==UserScript== // @name The Redeemer // @namespace raina // @description Pops up the Steam product activation dialog when copying keys from bundle pages. Currently supports Humble Bundle, Indie Royale and Indie Gala. Obviously requires that Steam is installed but also that it's allowed as the handler of steam:// protocol messages. // @include /^https?:\/\/www\.humblebundle\.com\/downloads\?/ // @include /^https?:\/\/www\.humblebundle\.com\/home\/(keys|library)/ // @include /^https?:\/\/www\.indieroyale\.com\/bundle\/key\// // @include /^https?:\/\/www.indiegala.com/(profile|game)\?/ // @version 1.2.1 // @grant none // ==/UserScript== (function() { "use strict"; var activateProduct = function(e) { if ("copy" === e.type || ("KeyC" === e.code && (e.ctrlKey || e.metaKey))) { window.location.href = "steam://open/activateproduct"; } }; window.addEventListener("copy", activateProduct, false); window.addEventListener("keypress", activateProduct, false); }());
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址