Sleazy Fork is available in English.
一鍵下載圖片 (壓縮下載/單圖下載) , 頁面數據創建 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.