Attention meme collectors.
Want to see only the images.
Use this JavaScript in your custom user JS options.
// Prevent the script from being installed more than onceif (!window.__imageOnlyViewer) { window.__imageOnlyViewer = true; // Capture all images currently on the page const images = [...document.images]; // Create the image-only viewer const viewer = document.createElement('div'); Object.assign(viewer.style, { position: 'fixed', inset: '0', zIndex: '999998', overflow: 'auto', background: '#fff', padding: '60px 20px 20px', boxSizing: 'border-box' }); // Add copies of all images to the viewer images.forEach(originalImg ={ const img = originalImg.cloneNode(true); Object.assign(img.style, { display: 'block', width: 'auto', height: 'auto', maxWidth: '100%', margin: '0 auto 20px', objectFit: 'contain' }); viewer.appendChild(img); }); // Add viewer to the page document.body.appendChild(viewer); // Create toggle button const toggle = document.createElement('button'); toggle.textContent = '🖼️ Image Only: ON'; Object.assign(toggle.style, { position: 'fixed', top: '60px', right: '10px', zIndex: '999999', padding: '10px 16px', fontSize: '14px', fontWeight: 'bold', border: '1px solid #888', borderRadius: '6px', background: '#222', color: '#fff', cursor: 'pointer', boxShadow: '0 2px 6px rgba(0,0,0,0.3)' }); // Add button to the page document.body.appendChild(toggle); // Track current state let imageOnly = true; // Toggle image-only mode toggle.addEventListener('click', () => { imageOnly = !imageOnly; if (imageOnly) { // Show image-only viewer viewer.style.display = 'block'; toggle.textContent = '🖼️ Image Only: ON'; } else { // Hide image-only viewer viewer.style.display = 'none'; toggle.textContent = '🖼️ Image Only: OFF'; } });}