Skip to content

Instantly share code, notes, and snippets.

@GoLangCentral
GoLangCentral / delete-all-linkedin-comments.md
Last active March 19, 2025 15:48
How to Bulk Delete All Your LinkedIn Comments, delete all LinkedIn Comments on 1 click 2024

Instructions

Unleash your inner tech wizard: Open the console log of your browser (yep, the magical "inspect" option).

  • Past and enter.
  • Time for a coffee break: Go get some coffee ☕—you’ve earned it!

No need to worry, there’s absolutely no malicious code here. Feel free to send it to an AI check for extra peace of mind. 😊

The Script

 /**
@Vlasterx
Vlasterx / delete-linkedin-posts.js
Last active March 12, 2025 08:33
Delete all LinkedIn posts version for June 2021.
(() => {
let speedMs = 500
setInterval(() => {
let dropdown = document.querySelector('.feed-shared-update-v2__control-menu .artdeco-dropdown button')
dropdown.click()
setTimeout(() => {
let optionDel = dropdown.parentElement.parentElement.parentElement.querySelector('.option-delete .tap-target')