// ==UserScript== // @name 5CH STYLE THUMBNAILER // @namespace http://tampermonkey.net/ // @version 1 // @description 5CH STYLE FORMATというchrome用拡張機能の画像をポップアップ表示する機能を小さめのサムネイル表示へと書き換えるスクリプトです。 // @author SenY // @match https://*.5ch.net/test/read.cgi/* // @icon https://www.google.com/s2/favicons?sz=64&domain=5ch.net // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; setInterval(function(){ document.querySelectorAll("article a.popImage > img").forEach(img => { img.classList.remove("image"); img.setAttribute("height", "320"); }); }, 500); // Your code here... })();