Bluesky serves two types of sample versions: feed_thumbnail and feed_fullsize. These are not the best public versions on the site. In order to access higher-quality versions, you need to reformat the URL to retrieve the original blob instead. Additionally, Bluesky uses a format for accounts and posts that breaks when usernames are changed. Solving these issues requires changing the URL to include the user's DID (decentralized identifier), but performing this process manually is tedious.
The two userscripts below will automatically get the best image quality and resolve to more stable links to Bluesky account and post pages:
Bluesky higher-quality image redirect: https://gist.github.com/Tarrgon/a58375cd3c1f15d8fd4238a2a7df35b5
Bluesky stable links redirect: https://gist.github.com/Tarrgon/c84f267a4f97314090b4870760b8fb8f
In order to use these, you will need a userscript manager. An example of a userscript manager is Tampermonkey: https://www.tampermonkey.net/
Once you install a userscript manager extension of your choice, copy-paste the scripts linked above into new scripts and save. Bluesky image links will now reload to higher-quality versions, and post and account links will be more stable for archiving purposes. The image quality improvement will vary from almost imperceptible to significantly less JPEG compression, but this version will always be superior.
-----
Edit: As of 2026-02-17, this method no longer works for image links without additional steps. Bluesky changed response headers in a way that prevents userscript managers like Tampermonkey from changing.
As a workaround, you will need to download an additional extension. Simple Modify Header is lightweight and works for this purpose.
Firefox add-on: https://addons.mozilla.org/en-US/firefox/addon/simple-modify-header/
Chrome extension: https://chromewebstore.google.com/detail/simple-modify-headers/gjgiipmpldkpbdfjkgofildhapegmmic?pli=1
Once downloaded, copy and save the following into a file named SimpleModifyHeader.conf
{"format_version":"1.2","target_page":"https://*.bsky.network/xrpc/com.atproto.sync.getBlob*","headers":[{"url_contains":"","action":"modify","header_name":"content-disposition","header_value":"inline","comment":"test","apply_on":"res","status":"on"}],"debug_mode":true,"show_comments":true,"use_url_contains":false}
Then, from the extension menu into the toolbar, open the "Configure" option for the extension, click the "Import" button on the top right to import the config, and click the button on the top right to start the extension. Bluesky image link redirects will now work again.
Updated