This tool simply lets you select a local image to view; the color of the first pixel (0, 0) is made transparent.
You can then save the now-transparent image to your PC.
Learning Notes
Despite the onchange in the INPUT tag, it still seems to require an event listener (for the document). (Both seem to be required.) I may be doing something wrong.
document.addEventListener(event, function, [useCapture]) → looks funny as a full function is taken as argument (including ; ).
useCapture: false (default) = event during bubbling phase, true = during capturing phase (whatever that means).
Strangely, the file opening seems to be coded after the preview/using of it. But it still seems required to work.