Comments

Log in with itch.io to leave a comment.

Hi there! This script is awesome, but I can't get it to load on images from the web– When opening a local image file, it functions as intended; but when clicking "open image in new tab" in chrome, the script doesn't activate properly. Tampermonkey claims that it loaded, but it doesn't appear.

Does anything pop up in the JS console (Ctrl+Shift+I)? And what browser are you using? I’ve only seen that the userscript struggles with very specific sites (like Patreon CDN) due to CORS (?).

incredible addon, been using it for years and cant imagine opening imgs without it

Thank you!

Very useful tool indeed! I only miss the option to pause animated gifs and go frame by frame.

(+1)

That would be an interesting feature, though not straightforward to do in plain JavaScript - would have to find a matching JS library to parse GIFs and then make some sort of UI...

This looks very useful !

Nice! Thanks, but had to fix the scroll wheel funtionality:

panner.children[0].addEventListener("mousewheel", onmousewheel);
panner.children[0].addEventListener("DOMMouseScroll", onmousewheel);

panner.children[0] instead of window

Thanks! Will test and add that to the next update.