// ==UserScript== // @name 2chan cat → thumb 置換 // @namespace https://img.2chan.net/ // @version 1.0 // @description /cat/ の画像URLを /thumb/ に置換 // @match https://img.2chan.net/b/futaba.php?mode=cat* // @grant none // ==/UserScript== (function() { 'use strict'; const replaceUrls = () => { document.querySelectorAll('img').forEach(img => { if (!img.src) return; img.src = img.src.replace( /\/cat\/(\d+s\.jpg)$/i, '/thumb/$1' ); }); }; // 初回実行 replaceUrls(); // 動的追加にも対応 const observer = new MutationObserver(() => { replaceUrls(); }); observer.observe(document.body, { childList: true, subtree: true }); })();