Soundgasm Downloader

Adds a Download Audio button to Soundgasm.net audio posts.

  1. // ==UserScript==
  2. // @name Soundgasm Downloader
  3. // @namespace https://github.com/diggtrap
  4. // @author diggtrap
  5. // @description Adds a Download Audio button to Soundgasm.net audio posts.
  6. // @include https://soundgasm.net/*
  7. // @icon https://i.imgur.com/BwX91V0.png
  8. // @version 0.401
  9. // @license GNU
  10. // ==/UserScript==
  11.  
  12. // Main function to add download button
  13. function addDownloadButton() {
  14. // Fetch the page content asynchronously
  15. fetch(window.location.href)
  16. .then(response => response.text())
  17. .then(html => {
  18. // Parse the HTML content to extract the M4A link
  19. const m4aLinkRegex = /m4a:\s*"(.*?)"/;
  20. const m4aMatch = html.match(m4aLinkRegex);
  21. const m4aUrl = m4aMatch ? m4aMatch[1] : null;
  22.  
  23. if (m4aUrl) {
  24. // Find the title of the audio post
  25. const audioTitleElement = document.querySelector('div.jp-title');
  26. const audioTitleText = audioTitleElement ? audioTitleElement.textContent.trim() : "";
  27.  
  28. // Extract the text before the second set of square brackets
  29. const match = audioTitleText.match(/\[.*?\](.*?)(?=\[|$)/);
  30. const audioTitle = match ? match[0] : audioTitleText;
  31.  
  32. // Find the creator's username from the URL
  33. const audioCreatorMatch = window.location.href.match(/\/u\/([^\/]+)/);
  34. const audioCreator = audioCreatorMatch ? audioCreatorMatch[1] : "";
  35.  
  36. // Create download link with post title, creator, and default text style
  37. const downloadButton = document.createElement('a');
  38. downloadButton.href = m4aUrl;
  39. downloadButton.target = "_blank";
  40. downloadButton.title = "Click to open in a New Tab; Right-click and 'Save link as' to Download";
  41. downloadButton.textContent = `Download ${audioTitle} by ${audioCreator}`;
  42. downloadButton.style.position = "fixed";
  43. downloadButton.style.bottom = "20px";
  44. downloadButton.style.right = "20px";
  45. downloadButton.style.padding = "10px";
  46. downloadButton.style.backgroundColor = "#444";
  47. downloadButton.style.color = "white";
  48. downloadButton.style.border = "none";
  49. downloadButton.style.borderRadius = "5px";
  50. downloadButton.style.cursor = "pointer";
  51. downloadButton.style.textDecoration = "none";
  52. downloadButton.style.fontWeight = "normal";
  53. downloadButton.style.fontSize = "14px";
  54.  
  55. document.body.appendChild(downloadButton);
  56. }
  57. });
  58. }
  59.  
  60. // Call the main function
  61. addDownloadButton();