Titan High‑Res Loader

Automatically forces Titan India’s product images to load at full 1000×1000 resolution.

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
// ==UserScript==
// @name         Titan High‑Res Loader
// @description  Automatically forces Titan India’s product images to load at full 1000×1000 resolution.
// @match        https://www.titan.co.in/*
// @run-at       document-end
// @license      N/A
// @version 0.0.1.20250422110253
// @namespace https://greatest.deepsurf.us/users/1460930
// ==/UserScript==
(function(){
  document.querySelectorAll('img[src*="?sw="]').forEach(img => {
    img.src = img.src.replace(/sw=\d+&sh=\d+/, 'sw=1000&sh=1000');
  });
})();