Greasy Fork is available in English.

Titan High‑Res Loader

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

  1. // ==UserScript==
  2. // @name Titan High‑Res Loader
  3. // @description Automatically forces Titan India’s product images to load at full 1000×1000 resolution.
  4. // @match https://www.titan.co.in/*
  5. // @run-at document-end
  6. // @license N/A
  7. // @version 0.0.1.20250422110253
  8. // @namespace https://greatest.deepsurf.us/users/1460930
  9. // ==/UserScript==
  10. (function(){
  11. document.querySelectorAll('img[src*="?sw="]').forEach(img => {
  12. img.src = img.src.replace(/sw=\d+&sh=\d+/, 'sw=1000&sh=1000');
  13. });
  14. })();