Skip to content

Instantly share code, notes, and snippets.

@joemaffei
Created December 30, 2023 15:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joemaffei/1e49fe20108ce31fcf340d9131e15576 to your computer and use it in GitHub Desktop.
Save joemaffei/1e49fe20108ce31fcf340d9131e15576 to your computer and use it in GitHub Desktop.
Sort Obsidian plugins by downloads
$('.plugins-container').replaceChildren(...Array.from($('.plugins-container').children).sort((a,b)=>parseInt(b.children[2].textContent.replace(/\D/g,''))-parseInt(a.children[2].textContent.replace(/\D/g,''))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment