// ==UserScript== // @name Lucida Downloader // @description Download music from Spotify, Qobuz, Tidal, SoundCloud & Amazon Music via Lucida. Inserts a download button on Spotify and a floating Lucida button in the bottom right corner. // @icon https://raw.githubusercontent.com/afkarxyz/misc-scripts/refs/heads/main/lucida/lucida.png // @version 2.1 // @author afkarxyz // @namespace https://github.com/afkarxyz/misc-scripts/ // @supportURL https://github.com/afkarxyz/misc-scripts/issues // @license MIT // @match https://open.spotify.com/* // @match https://listen.tidal.com/* // @match https://music.amazon.com/* // @match https://soundcloud.com/* // @match https://www.qobuz.com/* // @match https://lucida.to/* // @match https://lucida.su/* // @grant GM_setValue // @grant GM_getValue // @grant GM_addStyle // @downloadURL none // ==/UserScript== (function() { 'use strict'; const linkElement = document.createElement('link'); linkElement.rel = 'stylesheet'; linkElement.href = 'https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap'; document.head.appendChild(linkElement); const DOMAINS = ['lucida.to', 'lucida.su']; const BASE_URL = 'https://raw.githubusercontent.com/afkarxyz/misc-scripts/refs/heads/main/lucida/'; const SERVICES = { 'qobuz': { name: 'Qobuz', icon: `${BASE_URL}qobuz.png` }, 'tidal': { name: 'Tidal', icon: `${BASE_URL}tidal.svg` }, 'soundcloud': { name: 'Soundcloud', icon: `${BASE_URL}soundcloud.ico` }, 'amazon': { name: 'Amazon Music', icon: `${BASE_URL}amazon.png` } }; GM_addStyle(` .floating-buttons-container { position: fixed; bottom: 110px; right: -4px; display: flex; flex-direction: column; gap: 8px; z-index: 9999; } .main-floating-button { position: relative; width: 56px; height: 48px; border-radius: 24px 0 0 24px; background: rgba(255, 255, 255, 0.8); border: 1px solid rgba(0, 0, 0, 0.1); border-right: none; cursor: pointer; display: flex; align-items: center; justify-content: flex-end; box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.1); transition: all 0.1s ease; padding-right: 16px; opacity: 0.3; right: -2px; } .main-floating-button:hover { right: 4px; background: rgba(255, 255, 255, 1); box-shadow: -4px 4px 15px rgba(0, 0, 0, 0.15); opacity: 1; } .main-floating-button-disabled { cursor: not-allowed; opacity: 0.3 !important; filter: grayscale(100%); } .main-floating-button-disabled:hover { right: -2px; background: rgba(255, 255, 255, 0.8); box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.1); } .main-floating-button img { width: 32px; height: 32px; object-fit: contain; opacity: 0.7; position: relative; right: 0; transition: opacity 0.1s ease; } .main-floating-button:not(.main-floating-button-disabled):hover img { opacity: 1; } .prefs-floating-button { position: relative; width: 40px; height: 36px; border-radius: 24px 0 0 24px; background: rgba(255, 255, 255, 0.8); border: 1px solid rgba(0, 0, 0, 0.1); border-right: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.1); transition: all 0.1s ease; opacity: 0.3; right: -18px; padding-right: 10px; } .prefs-floating-button:hover { right: -14px; background: rgba(255, 255, 255, 1); box-shadow: -4px 4px 15px rgba(0, 0, 0, 0.15); opacity: 1; } .prefs-floating-button svg { width: 20px; height: 20px; fill: #666; } .prefs-floating-button:hover svg { fill: #333; } .lucida-modal *, .lucida-modal *::before, .lucida-modal *::after { all: initial; box-sizing: border-box; margin: 0; padding: 0; font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important; font-weight: normal !important; font-size: 14px !important; color: #333; } .lucida-modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.7); display: flex; justify-content: center; align-items: center; z-index: 10000; font-weight: normal; } .lucida-modal { background: white; padding: 20px 20px 40px 20px; border-radius: 8px; width: 320px; max-width: 90%; color: #333; font-size: 14px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); font-weight: normal !important; } .lucida-modal h2 { font-family: 'Inter', sans-serif !important; margin: 0 0 20px; color: #f42e8d; font-size: 18px !important; font-weight: 600 !important; line-height: 1.4; } .lucida-modal .preference-group { margin-bottom: 20px; color: #333; } .lucida-modal label { font-family: 'Inter', sans-serif !important; display: block; margin-top: 20px; margin-bottom: 8px; font-weight: 500 !important; font-size: 14px !important; color: #333; } .lucida-modal .header { display: flex; align-items: center; justify-content: flex-start; } .lucida-modal .header img { width: 64px; height: 64px; object-fit: contain; } .lucida-modal .header h2 { margin: 0; } .lucida-modal select { -webkit-appearance: none; -moz-appearance: none; appearance: none; width: 100%; padding: 8px 32px 8px 12px; border: 1px solid #ddd; border-radius: 4px; background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E") calc(100% - 12px) center no-repeat; cursor: pointer; font-size: 14px !important; color: #333; } .lucida-modal select:hover { border-color: #f42e8d; } .lucida-modal select:focus { outline: none; border-color: #f42e8d; box-shadow: 0 0 0 2px rgba(244, 46, 141, 0.2); } .service-select-wrapper { position: relative; margin-bottom: 15px; } .custom-select { width: 100%; padding: 8px 32px 8px 12px; border: 1px solid #ddd; border-radius: 4px; background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E") calc(100% - 12px) center no-repeat; display: flex; align-items: center; gap: 8px; cursor: pointer; transition: all 0.2s ease; user-select: none; font-size: 14px !important; color: #333; } .custom-select:hover { border-color: #f42e8d; } .custom-options { position: absolute; top: 100%; left: 0; right: 0; background: white; border: 1px solid #ddd; border-radius: 4px; margin-top: 4px; max-height: 200px; overflow-y: auto; z-index: 1000; display: none; box-shadow: 0 2px 8px rgba(0,0,0,0.1); } .custom-options.show { display: block; } .service-option { display: flex; align-items: center; gap: 8px; padding: 8px 12px; cursor: pointer; transition: background-color 0.2s ease; font-weight: normal !important; font-size: 14px !important; color: #333; } .service-option span, .custom-select span { font-family: 'Inter', sans-serif !important; font-size: 14px !important; color: #333; } .service-option:hover { background-color: #f5f5f5; } .service-option img, .custom-select img { width: 16px; height: 16px; object-fit: contain; } .btn { width: 40px; height: 40px; border-radius: 50%; border: 0; position: relative; cursor: pointer; transition: all 0.2s ease; box-shadow: 0 2px 5px rgba(0,0,0,0.2); display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #f42e8d, #b91c68); } .btn:hover { transform: scale(1.1); box-shadow: 0 4px 8px rgba(0,0,0,0.3); } .btn .icon { width: 50%; height: 50%; background-position: center; background-repeat: no-repeat; background-size: contain; background-image: url('data:image/svg+xml;utf8,'); } [data-testid="tracklist-row"] .btn { position: absolute; top: 50%; right: 100%; margin-top: -20px; margin-right: 10px; } .N7GZp8IuWPJvCPz_7dOg .btn { width: 24px; height: 24px; transform-origin: center; position: absolute; top: 50%; right: 100%; margin-top: -12px !important; margin-right: 10px; } .N7GZp8IuWPJvCPz_7dOg .btn .icon { transform: scale(0.85); width: 65%; height: 65%; } `); function createServiceOption(value, service) { const option = document.createElement('div'); option.className = 'service-option'; option.dataset.value = value; if (service.icon) { const img = document.createElement('img'); img.src = service.icon; img.alt = service.name; img.style.display = 'none'; img.onload = () => { img.style.display = 'inline'; }; option.appendChild(img); } const span = document.createElement('span'); span.textContent = service.name; option.appendChild(span); return option; } function updateCustomSelect(customSelect, value) { const service = SERVICES[value]; let content = `${service.name}`; if (service.icon) { const img = new Image(); img.src = service.icon; img.style.display = 'none'; img.onload = () => { img.style.display = 'inline'; customSelect.querySelector('img')?.style.setProperty('display', 'inline'); }; content = `${service.name}${service.name}`; } customSelect.innerHTML = content; } function createFloatingButton() { const container = document.createElement('div'); container.className = 'floating-buttons-container'; const mainButton = document.createElement('button'); mainButton.className = 'main-floating-button'; const icon = document.createElement('img'); icon.src = 'https://raw.githubusercontent.com/afkarxyz/misc-scripts/refs/heads/main/lucida/lucida.png'; icon.alt = 'Lucida'; mainButton.appendChild(icon); container.appendChild(mainButton); const prefsButton = document.createElement('button'); prefsButton.className = 'prefs-floating-button'; prefsButton.innerHTML = ``; container.appendChild(prefsButton); document.body.appendChild(container); const isSpotify = window.location.hostname === 'open.spotify.com'; if (isSpotify) { mainButton.classList.add('main-floating-button-disabled'); } else { mainButton.addEventListener('click', () => { const currentUrl = encodeURIComponent(window.location.href); const prefs = getPreferences(); let domain = prefs.domainPreference === 'random' ? DOMAINS[Math.floor(Math.random() * DOMAINS.length)] : prefs.domainPreference; window.open(`https://${domain}/?url=${currentUrl}&country=auto`, '_blank'); }); } prefsButton.addEventListener('click', () => { createPreferencesModal(); }); if (window.location.hostname.includes('lucida.')) { container.style.display = 'none'; } return container; } function createPreferencesModal() { const existingModal = document.querySelector('.lucida-modal-overlay'); if (existingModal) { existingModal.remove(); } const modalHTML = `

Lucida Preferences

Select a service
`; const modalContainer = document.createElement('div'); modalContainer.innerHTML = modalHTML; document.body.appendChild(modalContainer.firstElementChild); const customSelect = document.getElementById('custom-service-select'); const customOptions = document.querySelector('.custom-options'); const serviceSelect = document.getElementById('service-select'); const domainSelect = document.getElementById('domain-select'); const formatSelect = document.getElementById('format-select'); const qualityContainer = document.getElementById('quality-settings-container'); const qualitySelect = document.getElementById('quality-select'); const autoDownloadSelect = document.getElementById('auto-download-select'); const lucidaIcon = document.querySelector('.lucida-icon'); lucidaIcon.onload = () => { lucidaIcon.style.display = 'inline'; }; lucidaIcon.onerror = () => { lucidaIcon.style.display = 'none'; }; lucidaIcon.addEventListener('click', () => { const domainPref = GM_getValue('domainPreference', 'random'); let domain = domainPref === 'random' ? DOMAINS[Math.floor(Math.random() * DOMAINS.length)] : domainPref; window.open(`https://${domain}/stats`, '_blank'); }); if (domainSelect) { domainSelect.value = GM_getValue('domainPreference', 'random'); domainSelect.addEventListener('change', () => { GM_setValue('domainPreference', domainSelect.value); }); } if (formatSelect) { formatSelect.value = GM_getValue('formatPreference', 'original'); formatSelect.addEventListener('change', () => { GM_setValue('formatPreference', formatSelect.value); updateQualityOptions(formatSelect.value); }); } if (autoDownloadSelect) { autoDownloadSelect.value = GM_getValue('autoDownloadEnabled', 'enabled'); autoDownloadSelect.addEventListener('change', () => { GM_setValue('autoDownloadEnabled', autoDownloadSelect.value); }); } const savedService = GM_getValue('targetService', 'tidal'); if (SERVICES[savedService]) { updateCustomSelect(customSelect, savedService); serviceSelect.value = savedService; } else { updateCustomSelect(customSelect, 'tidal'); serviceSelect.value = 'tidal'; } function updateQualityOptions(format) { qualitySelect.innerHTML = ''; switch(format) { case 'flac': qualitySelect.innerHTML = ''; qualityContainer.style.display = 'block'; GM_setValue('qualityPreference', '16'); break; case 'mp3': case 'ogg-vorbis': case 'm4a-aac': qualitySelect.innerHTML = ` `; qualityContainer.style.display = 'block'; GM_setValue('qualityPreference', '320'); break; case 'opus': qualitySelect.innerHTML = ` `; qualityContainer.style.display = 'block'; GM_setValue('qualityPreference', '320'); break; default: qualityContainer.style.display = 'none'; GM_setValue('qualityPreference', null); } } updateQualityOptions(formatSelect.value); if (qualitySelect) { qualitySelect.value = GM_getValue('qualityPreference', '320'); qualitySelect.addEventListener('change', () => { GM_setValue('qualityPreference', qualitySelect.value); }); } Object.entries(SERVICES).forEach(([value, service]) => { const option = createServiceOption(value, service); customOptions.appendChild(option); option.addEventListener('click', () => { serviceSelect.value = value; GM_setValue('targetService', value); updateCustomSelect(customSelect, value); customOptions.classList.remove('show'); }); }); customSelect.addEventListener('click', () => { customOptions.classList.toggle('show'); }); document.addEventListener('click', (e) => { if (!e.target.closest('.service-select-wrapper')) { customOptions.classList.remove('show'); } }); const modalOverlay = document.querySelector('.lucida-modal-overlay'); if (modalOverlay) { modalOverlay.addEventListener('click', (e) => { if (e.target === modalOverlay) { modalOverlay.remove(); } }); } } function autoSelectFormat() { if (!window.location.hostname.includes('lucida.')) return; const selectFormatAndQuality = () => { const convertSelect = document.getElementById('convert'); if (!convertSelect) return; const format = GM_getValue('formatPreference', 'original'); const quality = GM_getValue('qualityPreference', '320'); convertSelect.value = format; convertSelect.dispatchEvent(new Event('change', { bubbles: true })); const observer = new MutationObserver((mutations, obs) => { const downsettingSelect = document.getElementById('downsetting'); if (downsettingSelect) { downsettingSelect.value = quality; downsettingSelect.dispatchEvent(new Event('change', { bubbles: true })); obs.disconnect(); } }); observer.observe(document.body, { childList: true, subtree: true }); }; if (document.getElementById('convert')) { selectFormatAndQuality(); } const pageObserver = new MutationObserver((mutations) => { if (document.getElementById('convert')) { selectFormatAndQuality(); } }); pageObserver.observe(document.body, { childList: true, subtree: true }); } function autoDownload() { if (!window.location.hostname.includes('lucida.')) return; if (GM_getValue('autoDownloadEnabled', 'enabled') !== 'enabled') return; const clickDownloadButton = () => { const button = document.querySelector('.d1-track button') || document.querySelector('button[class*="download-button"]'); if (button) { button.click(); } }; const observer = new MutationObserver((mutations) => { clickDownloadButton(); }); observer.observe(document.body, { childList: true, subtree: true }); clickDownloadButton(); } function openInLucida(trackUrl) { const currentUrl = encodeURIComponent(trackUrl || window.location.href); const prefs = getPreferences(); let domain = prefs.domainPreference === 'random' ? DOMAINS[Math.floor(Math.random() * DOMAINS.length)] : prefs.domainPreference; let url = `https://${domain}/?url=${currentUrl}&country=auto`; if (prefs.targetService) { url += `&to=${prefs.targetService}`; } window.open(url, '_blank'); } const getPreferences = () => ({ targetService: GM_getValue('targetService', 'tidal'), domainPreference: GM_getValue('domainPreference', 'random') }); function addButton(el) { const button = document.createElement('button'); button.className = 'btn'; const icon = document.createElement('div'); icon.className = 'icon'; button.appendChild(icon); el.appendChild(button); return button; } function addNowPlayingButton() { const downloadButton = document.createElement('button'); downloadButton.className = 'Lucida-Button-sc-1dqy6lx-0 dmdXQN'; downloadButton.innerHTML = ''; downloadButton.style.cssText = 'background:transparent;border:none;color:#f42e8d;cursor:pointer;padding:8px;margin:0 4px;transition:transform .2s ease'; downloadButton.onmouseover = () => downloadButton.style.transform = 'scale(1.1)'; downloadButton.onmouseout = () => downloadButton.style.transform = 'scale(1)'; downloadButton.onclick = () => { const link = document.querySelector('a[href*="spotify:track:"]'); if (link) { const match = link.getAttribute('href').match(/spotify:track:([a-zA-Z0-9]+)/); if (match) { const trackUrl = `https://open.spotify.com/track/${match[1]}`; openInLucida(trackUrl); } } }; const container = document.querySelector('.snFK6_ei0caqvFI6As9Q')?.querySelector('.deomraqfhIAoSB3SgXpu'); if (container && !container.querySelector('.Lucida-Button-sc-1dqy6lx-0')) { container.appendChild(downloadButton); } } function animate() { const currentUrl = window.location.href; const urlParts = currentUrl.split('/'); const type = urlParts[3]; addNowPlayingButton(); if (type === 'track') { const actionBarRow = document.querySelector('.eSg4ntPU2KQLfpLGXAww[data-testid="action-bar-row"]'); if (actionBarRow && !actionBarRow.hasButtons) { const downloadButton = addButton(actionBarRow); downloadButton.onclick = function() { const spotifyId = urlParts[4].split('?')[0]; openInLucida(`https://open.spotify.com/track/${spotifyId}`); } actionBarRow.hasButtons = true; } } if (type === 'artist') { const tracks = document.querySelectorAll('[role="gridcell"]'); tracks.forEach(track => { if (!track.hasButtons) { const downloadButton = addButton(track); downloadButton.onclick = function() { const btn = track.querySelector('[data-testid="more-button"]'); if (btn) { btn.click(); setTimeout(() => { const highlightEl = document.querySelector('#context-menu a[href*="highlight"]'); if (highlightEl) { const highlight = highlightEl.href.match(/highlight=(.+)/)[1]; document.dispatchEvent(new MouseEvent('mousedown')); const spotifyId = highlight.split(':')[2]; openInLucida(`https://open.spotify.com/track/${spotifyId}`); } }, 1); } } track.hasButtons = true; } }); } if (type === 'album' || type === 'playlist' || type === 'track') { const tracks = document.querySelectorAll('[data-testid="tracklist-row"]'); tracks.forEach(track => { if (!track.hasButtons) { const downloadButton = addButton(track); downloadButton.onclick = function() { const trackLink = track.querySelector('a[href^="/track"]'); if (trackLink) { openInLucida(trackLink.href); } else { const btn = track.querySelector('[data-testid="more-button"]'); if (btn) { btn.click(); setTimeout(() => { const highlightEl = document.querySelector('#context-menu a[href*="highlight"]'); if (highlightEl) { const highlight = highlightEl.href.match(/highlight=(.+)/)[1]; document.dispatchEvent(new MouseEvent('mousedown')); const spotifyId = highlight.split(':')[2]; openInLucida(`https://open.spotify.com/track/${spotifyId}`); } }, 1); } } } track.hasButtons = true; } }); } } function animateLoop() { if (window.location.hostname === 'open.spotify.com') { animate(); } requestAnimationFrame(animateLoop); } function initialize() { const floatingButton = createFloatingButton(); requestAnimationFrame(animateLoop); autoSelectFormat(); autoDownload(); const isLucidaDomain = window.location.hostname.includes('lucida.'); if (GM_getValue('floatIconEnabled', 'enabled') === 'disabled' || isLucidaDomain) { floatingButton.style.display = 'none'; } } initialize(); })();