I developed a JavaScript bookmarklet that generates a screenshot of an element and stores it as a base64 encoded string.
However, I am faced with the challenge of sending this image/string to my server for storage because it consists of over 6000 characters, approximately 61 KB in size, which makes it impractical to transmit it back using a GET request.
Is there a third-party service available that could assist in retrieving the image on my server? What is the best approach for transmitting this image to my server?