How can I download cursors from this website without giving aids to my pc?https://custom-cursor.com/en/collection/origami/origami-blue-pink-sharks
>>1563558This service seems to rely on you installing their program rather than directly installing the assets.However, you can also just rip the cursor pngs with Inspect Element. Run this javascript or do inspect element yourself on the "Hover Me" box and obtain the URLs for both cursor pngs.console.log(“Normal mode:”, document.querySelector(".single-b-l.ex" ).style.cursor)console.log(“Hover mode:”, document.querySelector("button.btn.btn__tran").style.cursor)Download the PNGs at those urls, open them in GIMP and then re-export them as .cur files.Go to Control Panel > Mouse Properties > Pointers, where you can then install your two .cur files.
>>1563814damn it forgot to fix the curly quotes. Use this instead.console.log("Normal mode:", document.querySelector(".single-b-l.ex" ).style.cursor)console.log("Hover mode:", document.querySelector("button.btn.btn__tran").style.cursor)
worked like a charm, thanks anon