A Chrome extension I'm making which replaces the new tab page, loads the data for an image from localStorage really quickly but it takes 2-3 minutes to open the Elements tab of Chrome Dev Tools. I think it's because I'm using data:image in the background style of the body like this...
<body style="background-image: url(data:image/jpeg;base64, ...)">
...and it takes ages to load the ~40,000 characters.
Is there a better way to set image data in localStorage or a better way of displaying it with javascript/jQuery?
(I can't use a URL as it's using unsplash.it to load a random image)