This script serves to delete duplicate scrobbles (i.e. the same song scrobbled multiple times in a row) from your Last.fm library.
To use it, paste the script into your browser's console (or the address bar, but prefix the script with javascript:
) while logged in and
in the own library.
Your scrobbler might just have decided to scrobble every song hundreds of times and you can't really remove those scrobbles efficiently. Or, if you're like me, you might have accidentally installed multiple scrobbler extensions at the same time - wondering why multiple scrobbles appear for every song played at a time - and you want to clear them after finding the issue.
Using this script still doesn't necessarily make the process quick, since Last.fm only shows a specific number of scrobbles which can be removed on each page in your library.
- Copy the following script URL into your clipboard
javascript:var dupesFound=0,elements=Array.from(document.querySelectorAll(".js-link-block"));elements.map(function(e){var o=e.querySelector(".chartlist-name");return o&&o.textContent.replace(/\s+/g," ").trim()}).forEach(function(e,o,n){if(e===n[o+1]){var t=elements[o].querySelector('[data-ajax-form-sets-state="deleted"]');t&&(dupesFound++,console.log("deleting dupe",e,elements[o]),t.click(),location.reload())}}),dupesFound?console.log(dupesFound+" duplicates found and deleted, reloading page..."):console.log("no duplicates found on this page");
- Right-click your browser's bookmark bar and click "Add page..."
- Give the bookmark a name, like "Remove duplicates"
- Paste the script you copied in step 1 into the bookmark's URL.
- Save the bookmark
- Open your Last.fm account's library while being logged in (https://www.last.fm/user/_/library).
- Opening your bookmark will trigger the script to execute.
- Repeat clicking the bookmark as long as there are no duplicates left.
- Copy the one-line script
- Open your Last.fm account's library while being logged in (https://www.last.fm/user/_/library).
- Type
javascript:
into the address bar and paste the script directly after it. Or, open the dev tools and paste the script into the console. - Press enter. This will remove all duplicates on the current page.
- Let the site reload (invoked by the script).
- Repeat pasting the script and pressing enter if more duplicates appear at the bottom.
- If needed, go to the next page of your library repeat the steps as of step 3.
var dupesFound=0,elements=Array.from(document.querySelectorAll(".js-link-block"));elements.map(function(e){var o=e.querySelector(".chartlist-name");return o&&o.textContent.replace(/\s+/g," ").trim()}).forEach(function(e,o,n){if(e===n[o+1]){var t=elements[o].querySelector('[data-ajax-form-sets-state="deleted"]');t&&(dupesFound++,console.log("deleting dupe",e,elements[o]),t.click(),location.reload())}}),dupesFound?console.log(dupesFound+" duplicates found and deleted, reloading page..."):console.log("no duplicates found on this page");
The script will only remove what's visible on the current library page. After entries were deleted, more duplicates may appear at the bottom. This might happen multiple times. Once one page is finally duplicate-free, the process can be repeated for next pages.