Skip to content

Instantly share code, notes, and snippets.

View brunophilipe's full-sized avatar

Bruno Philipe brunophilipe

View GitHub Profile
@brunophilipe
brunophilipe / lastfm-remove-duplicates.js
Last active June 26, 2026 01:52 — forked from sk22/lastfm-remove-duplicates.js
Last.fm duplicate scrobble deleter
var elements = Array.from(document.querySelectorAll('.chartlist-row'))
var names = elements.map(function(element) {
var nameElement = element.querySelector('.chartlist-name')
return nameElement ? nameElement.textContent.replace(/\s+/g, ' ').trim() : null
})
var MAX_PARTIAL_PERIOD = 3
var toDelete = new Set()
for (var i = 0; i < names.length; i++) {