Skip to content

Instantly share code, notes, and snippets.

View bonnebulle's full-sized avatar
🎯
Focusing

vincent_b bonnebulle

🎯
Focusing
View GitHub Profile
@bonnebulle
bonnebulle / navidromeRemoveAllMissingFiles__french.js
Last active July 20, 2025 14:42 — forked from pdcmoreira/navidromeRemoveAllMissingFiles.js
Batch remove all missing files from all pages in Navidrome's "Missing files" list - copy-paste into the console and run
// Source https://gist.github.com/pdcmoreira/8ab7a2a26abf3d63aa041f535de942f5
// Navidrom -> TopRight menu -> Fichiers manquants...
// -> Navigateur -> Console (dev tools)
// > copy paste this + ENTER
(async () => {
const wait = (time) => new Promise(resolve => setTimeout(resolve, time))
const countElements = () => document.querySelectorAll('.MuiTableRow-root').length
while(countElements()) {