From d017dbaf1aeaf79051ad104ebeb7b48545449657 Mon Sep 17 00:00:00 2001 From: thorstenalpers Date: Wed, 17 Dec 2025 19:18:39 +0100 Subject: [PATCH 1/5] 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/5] 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/5] 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/5] 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) From a3d643733f7b6f8baef50862c9db9cf66aab983b Mon Sep 17 00:00:00 2001 From: thorstenalpers Date: Thu, 18 Dec 2025 05:30:43 +0100 Subject: [PATCH 5/5] Improve doku --- README.md | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 1ec180d..1cee09a 100644 --- a/README.md +++ b/README.md @@ -83,15 +83,16 @@ You can also run the cleanup directly in your browser using JavaScript snippets: ### 🔧 Steps: -1. Visit your [X profile](https://x.com/) and note your **username** (e.g., `@USERNAME`). -2. Open **Developer Tools** in Chrome by pressing `F12`. -3. Go to the **Sources** tab, then open the **Snippets** panel. -4. Click **"New Snippet"** and paste the JavaScript code from the provided links. -5. Save the snippet. -6. Run the snippet once by right-clicking it and selecting **Run** — this loads the script into the page context. -7. Switch to the **Console** tab. -8. Manually execute the appropriate function call (e.g., `DeleteAllPosts(1000, 1000);`) in the console to start the deletion process. -9. Repeat step 4 with other functions as needed. +1. Visit your [X profile](https://x.com/) and note your **username** (the part after `x.com/`, without the `@`). +2. Replace all occurrences of `USERNAME` in URLs and function calls with your actual username. +3. Open **Developer Tools** in Chrome by pressing `F12`. +4. Go to the **Sources** tab, then open the **Snippets** panel. +5. Click **"New Snippet"** and paste the JavaScript code from the provided links. +6. Save the snippet. +7. Run the snippet once (right-click → Run) to load the script into the page context. +8. Switch to the **Console** tab. +9. Manually execute the appropriate function call (e.g., `DeleteAllPosts(1000, 1000);`) in the console to start the deletion process. +10. Repeat steps 4–8 for other scripts as needed. #### Delete Posts