From d017dbaf1aeaf79051ad104ebeb7b48545449657 Mon Sep 17 00:00:00 2001 From: thorstenalpers Date: Wed, 17 Dec 2025 19:18:39 +0100 Subject: [PATCH 1/4] Fix rendering --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 7e374d2..10e7e9f 100644 --- a/README.md +++ b/README.md @@ -107,19 +107,27 @@ You can also run the cleanup directly in your browser using JavaScript snippets: #### Delete Replies + - URL: [https://x.com/USERNAME/with_replies](https://x.com/USERNAME/with_replies) + - Script: [delete-all-replies.js](https://raw.githubusercontent.com/thorstenalpers/CleanMyPosts/refs/heads/main/src/UI/Scripts/delete-all-replies.js) + - Run: `DeleteAllReplies('USERNAME', 1000, 5);` // replace USERNAME with yours #### Unlike Posts - URL: [https://x.com/USERNAME/likes](https://x.com/USERNAME/likes) + - Script: [delete-all-likes.js](https://raw.githubusercontent.com/thorstenalpers/CleanMyPosts/refs/heads/main/src/UI/Scripts/delete-all-likes.js) + - Run: `DeleteAllLike(1000)` #### Unfollow Accounts + - URL: [https://x.com/USERNAME/following](https://x.com/USERNAME/following) + - Script: [delete-all-following.js](https://raw.githubusercontent.com/thorstenalpers/CleanMyPosts/refs/heads/main/src/UI/Scripts/delete-all-following.js) + - Run: `DeleteAllFollowing(1000, 1000);` --- From 0ff0d1d7f82727df9ed0084dcc1bf1a328828dbd Mon Sep 17 00:00:00 2001 From: thorstenalpers Date: Wed, 17 Dec 2025 19:20:26 +0100 Subject: [PATCH 2/4] fix rendering --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 10e7e9f..84cb7c9 100644 --- a/README.md +++ b/README.md @@ -95,14 +95,20 @@ You can also run the cleanup directly in your browser using JavaScript snippets: #### Delete Posts + - URL: [https://x.com/search?q=from%3AUSERNAME](https://x.com/search?q=from%3AUSERNAME) + - Script: [delete-all-posts.js](https://raw.githubusercontent.com/thorstenalpers/CleanMyPosts/refs/heads/main/src/UI/Scripts/delete-all-posts.js) + - Run: `DeleteAllPosts(1000, 1000);` -#### Delete Reposts +#### Delete Reposts + - URL: [https://x.com/USERNAME](https://x.com/USERNAME) + - Script: [delete-all-reposts.js](https://raw.githubusercontent.com/thorstenalpers/CleanMyPosts/refs/heads/main/src/UI/Scripts/delete-all-reposts.js) + - Run: `DeleteAllRepost(1000);` @@ -115,6 +121,7 @@ You can also run the cleanup directly in your browser using JavaScript snippets: - Run: `DeleteAllReplies('USERNAME', 1000, 5);` // replace USERNAME with yours #### Unlike Posts + - URL: [https://x.com/USERNAME/likes](https://x.com/USERNAME/likes) - Script: [delete-all-likes.js](https://raw.githubusercontent.com/thorstenalpers/CleanMyPosts/refs/heads/main/src/UI/Scripts/delete-all-likes.js) From 30d32c8e6867a14c1dc6dbdaa8f364fc1bcb4295 Mon Sep 17 00:00:00 2001 From: thorstenalpers Date: Wed, 17 Dec 2025 19:24:50 +0100 Subject: [PATCH 3/4] Fix banner --- README.md | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 84cb7c9..64fc6e2 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,4 @@ -![Banner](./src/UI/Assets/banner.png) - +![Banner](https://raw.githubusercontent.com/thorstenalpers/CleanMyPosts/main/src/CleanMyPosts/Assets/banner.png) [![Windows](https://img.shields.io/badge/platform-Windows-blue)](#) [![License](https://img.shields.io/badge/License-MIT-blue.svg)](./LICENSE.txt) [![CI Tests](https://github.com/thorstenalpers/CleanMyPosts/actions/workflows/ci.yml/badge.svg)](https://github.com/thorstenalpers/CleanMyPosts/actions/workflows/ci.yml) @@ -98,7 +97,7 @@ You can also run the cleanup directly in your browser using JavaScript snippets: - URL: [https://x.com/search?q=from%3AUSERNAME](https://x.com/search?q=from%3AUSERNAME) -- Script: [delete-all-posts.js](https://raw.githubusercontent.com/thorstenalpers/CleanMyPosts/refs/heads/main/src/UI/Scripts/delete-all-posts.js) +- Script: [delete-all-posts.js](https://raw.githubusercontent.com/thorstenalpers/CleanMyPosts/refs/heads/main/src/CleanMyPosts/Scripts/delete-all-posts.js) - Run: `DeleteAllPosts(1000, 1000);` @@ -107,7 +106,7 @@ You can also run the cleanup directly in your browser using JavaScript snippets: - URL: [https://x.com/USERNAME](https://x.com/USERNAME) -- Script: [delete-all-reposts.js](https://raw.githubusercontent.com/thorstenalpers/CleanMyPosts/refs/heads/main/src/UI/Scripts/delete-all-reposts.js) +- Script: [delete-all-reposts.js](https://raw.githubusercontent.com/thorstenalpers/CleanMyPosts/refs/heads/main/src/CleanMyPosts/Scripts/delete-all-reposts.js) - Run: `DeleteAllRepost(1000);` @@ -116,7 +115,7 @@ You can also run the cleanup directly in your browser using JavaScript snippets: - URL: [https://x.com/USERNAME/with_replies](https://x.com/USERNAME/with_replies) -- Script: [delete-all-replies.js](https://raw.githubusercontent.com/thorstenalpers/CleanMyPosts/refs/heads/main/src/UI/Scripts/delete-all-replies.js) +- Script: [delete-all-replies.js](https://raw.githubusercontent.com/thorstenalpers/CleanMyPosts/refs/heads/main/src/CleanMyPosts/Scripts/delete-all-replies.js) - Run: `DeleteAllReplies('USERNAME', 1000, 5);` // replace USERNAME with yours @@ -124,7 +123,7 @@ You can also run the cleanup directly in your browser using JavaScript snippets: - URL: [https://x.com/USERNAME/likes](https://x.com/USERNAME/likes) -- Script: [delete-all-likes.js](https://raw.githubusercontent.com/thorstenalpers/CleanMyPosts/refs/heads/main/src/UI/Scripts/delete-all-likes.js) +- Script: [delete-all-likes.js](https://raw.githubusercontent.com/thorstenalpers/CleanMyPosts/refs/heads/main/src/CleanMyPosts/Scripts/delete-all-likes.js) - Run: `DeleteAllLike(1000)` @@ -133,7 +132,7 @@ You can also run the cleanup directly in your browser using JavaScript snippets: - URL: [https://x.com/USERNAME/following](https://x.com/USERNAME/following) -- Script: [delete-all-following.js](https://raw.githubusercontent.com/thorstenalpers/CleanMyPosts/refs/heads/main/src/UI/Scripts/delete-all-following.js) +- Script: [delete-all-following.js](https://raw.githubusercontent.com/thorstenalpers/CleanMyPosts/refs/heads/main/src/CleanMyPosts/Scripts/delete-all-following.js) - Run: `DeleteAllFollowing(1000, 1000);` From b3ec8f661486e321a1e87db33d4eee84a18c1023 Mon Sep 17 00:00:00 2001 From: thorstenalpers Date: Wed, 17 Dec 2025 19:36:07 +0100 Subject: [PATCH 4/4] Fix rendering --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 64fc6e2..1ec180d 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ ![Banner](https://raw.githubusercontent.com/thorstenalpers/CleanMyPosts/main/src/CleanMyPosts/Assets/banner.png) + [![Windows](https://img.shields.io/badge/platform-Windows-blue)](#) [![License](https://img.shields.io/badge/License-MIT-blue.svg)](./LICENSE.txt) [![CI Tests](https://github.com/thorstenalpers/CleanMyPosts/actions/workflows/ci.yml/badge.svg)](https://github.com/thorstenalpers/CleanMyPosts/actions/workflows/ci.yml)