画像をワンクリックでダウンロード(圧縮ダウンロード/単一画像ダウンロード)、ページデータを作成してjsonでダウンロード、現在のすべての投稿をワンクリックで開く
Thanks for pointing out the mistake with response.readyState === 4. I appreciate the correction!
Regarding the button, I intentionally designed it to be subtle so that it doesn’t interfere with users while they are viewing posts. The visibility was a deliberate choice.
Currently, I’m focusing on other projects, so this one is not actively maintained. The dev version was left at an intermediate stage and is not yet complete. There won’t be updates for this project in the near future.
Thanks again for your feedback!
bug:
if (response.readyState === 4 && response.status === 200)
should be:
if (response.ok === true && response.status === 200)
this was hard to debug because its in a worker. also add .Download_Button{ ... font-size: 200% } or you can barely see the button.