您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Replace the links with correct ones for images of games headers and trading cards/emoticons/backgrounds
// ==UserScript== // @name SteamTrade Matcher - Images Bug Fix // @description Replace the links with correct ones for images of games headers and trading cards/emoticons/backgrounds // @icon http://www.steamtradematcher.com/res/img/favicon.jpg // @namespace Carje // @version 0.2 // @license MIT // @require http://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js // @include https://www.steamtradematcher.com/compare // @include https://www.steamtradematcher.com/tools/fullsets // @author Carje // ==/UserScript== /* globals jQuery, $, waitForKeyElements */ $(document).ready(function(){ if (window.location.href.indexOf("compare") > -1) { var id = setInterval(frame, 1000); function frame() { if (document.getElementById('progress-percent').innerText == 100) { clearInterval(id); } else { $('img').each(function(){ this.src = this.src.replace('http://cdn.steamcommunity.com', 'https://steamcommunity-a.akamaihd.net'); }); $('img').each(function(){ this.src = this.src.replace('http://cdn.akamai.steamstatic.com', 'https://steamcdn-a.akamaihd.net'); }); } } } if (window.location.href.indexOf("fullsets") > -1) { var fs = setInterval(function() { if($('.fullset-calc-results').is(':visible')){ clearInterval(fs); $('img').each(function(){ this.src = this.src.replace('http://cdn.akamai.steamstatic.com', 'https://steamcdn-a.akamaihd.net'); }); } }, 1000); } });
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址