santa hat
deerdeer nosedeer glow
Sign In

Navigating galleries is annoying

Using my little iphone screen, i zoom in a bit if needed but the press-down map on the forward and backward arrows are too small. Even on ipad i keep opening the full image and when it’s open all the way reloads going either direction are a lot slower. So I close the full image, hit next and damn full image opens again!

Please make press down maps larger. TY

1 Answer

I think the icon size is fine (how big are your mitts?) but if you're really motivated, you can do this yourself.

First get the gear browser, which allows you to inject custom scripts (supports greasemonkey) https://apps.apple.com/app/apple-store/id1458962238?mt=8

Then set this script:

setInterval(() => {
  const leftIcon = document.querySelector('.tabler-icon.tabler-icon-chevron-left');
  leftIcon.style.height='100px';
  leftIcon.style.width='100px';
  const rightIcon = document.querySelector('.tabler-icon.tabler-icon-chevron-right');
  rightIcon.style.height='100px';
  rightIcon.style.width='100px';
}, 500)

This will double the size of the icons, increase PX to increase it further.

with script:

Without script:

Your answer