v0.3.3
What's fixed
Replies loop could delete the same item repeatedly. After deleting a reply on the replies tab, Threads keeps the DOM element in place. Without tracking, the next iteration finds the same More button and tries to delete an already-deleted item — which wastes time or loops forever.
Fix: each More SVG gets \data-oc-processed\ before the delete attempt. The JS selector skips SVGs with that attribute, so already-processed items are never candidate for deletion again.
Also simplifies \delete_replies: deletes directly on the replies tab page — no navigating into individual threads.