Skip to content

Instantly share code, notes, and snippets.

@ongnxco
ongnxco / kobo_dropbox.md
Created March 16, 2024 15:43
Kobo enable dropbox
@ongnxco
ongnxco / Bookmarklet to download mp3 files on ldoceonline.md
Created February 16, 2024 13:03
Bookmarklet to download mp3 files on ldoceonline
javascript:(function() {
  // Find all spans with the data-src-mp3 attribute
  const spans = document.querySelectorAll('span[data-src-mp3]');

  // Create an array of .mp3 file URLs
  const mp3Urls = Array.from(spans).map(span => span.getAttribute('data-src-mp3'));

  // Iterate through the array of URLs and download each file
 mp3Urls.forEach(url => {