Size
665 B
Version
1.0.1
Created
Jan 17, 2026
Updated
about 2 months ago
1// ==UserScript==
2// @name ExoticaZ Thumbnail Enlarger
3// @description Makes thumbnails bigger on ExoticaZ
4// @version 1.0.1
5// @match https://*.exoticaz.to/*
6// ==/UserScript==
7(function() {
8 'use strict';
9
10 console.log('ExoticaZ Thumbnail Enlarger loaded');
11
12 // Add CSS to make thumbnails bigger
13 TM_addStyle(`
14 .screen-image {
15 width: 200px !important;
16 height: auto !important;
17 }
18
19 .screen-image img {
20 width: 100% !important;
21 height: auto !important;
22 max-width: 200px !important;
23 }
24 `);
25
26 console.log('Thumbnails enlarged');
27})();