All Growth Stack employees use Linkedin to prospect and so far it has brought good outcomes. Are you using Linkedin to prospect? If you intend to use Linkedin for this purpose you need to clean up your message box and start on a clean slate, that way it will be easy to follow up prospects. Below is the sure way to delete all your messages and start afresh.
Please note: this will delete all the messages and don’t hold us responsible for any losses. 2. This method may be out of date after a while, we will try to keep this post up to date but should in case that does not happen please notify us or do a google search for the latest code.
- Login to your Linkedin account on your chrome browser
- Click Messaging
- Select one of the messages (It’s best to stroll to the oldest message)
- At the top right of your chrome browser, click the three-vertical-dotted menu
- Point to more tools
- Click Developer tools.
- Past the code below on the console section of the DevTool AND press ENTER or RETURN Key.
CODE
;(function () {
setInterval(() => {
let deleted = false;
let dropdowns = document.querySelectorAll('artdeco-dropdown-item');
for (let i = 0; i < dropdowns.length; i++){
let txt = dropdowns[i].textContent.trim();
if (txt === 'Delete') {
deleted = true;
dropdowns[i].click();
}
}
if (deleted){
setTimeout(() => {
let messageModal = document.querySelector('.msg-modal-delete-convo');
let deleteBtn = messageModal.querySelector('.artdeco-button--primary');
deleteBtn.click();
}, 500)
} else {
let messageConverstionCard = document.querySelector('.msg-conversation-card__list-action-icon');
messageConverstionCard.click();
}
}, 1000);
}());