trabbey playlists.

trabbey playlists.

trabbey playlists.

Find the perfect instrumental beats playlist for your needs.

Lorem ipsum

150+

150+

150+

Playlists

Playlists

500,00+

500,00+

500,00+

Followers

Followers

200M+

200M+

200M+

Total Streams

Total Streams

Rap Beats

111.000 followers

Trap Beats

61.000 followers

Drill Type Beats

44.000 followers

Sad Emotional Beats

42.000 followers

90s Rap Beats

37.000 followers

Hard Trap Beats

25.000 followers

Old School Freestyle

22.000 followers

// Add UTM params from localStorage utmKeys.forEach(key => { const value = localStorage.getItem(key); if (value) { storedParams.set(key, value); } }); // Add ref param from localStorage const ref = localStorage.getItem(refKey); if (ref) { storedParams.set(refKey, ref); } const buttons = document.querySelectorAll('a.buy-now'); buttons.forEach(button => { try { const url = new URL(button.href); const params = new URLSearchParams(url.search); storedParams.forEach((value, key) => { params.set(key, value); }); url.search = params.toString(); button.href = url.toString(); } catch (err) { console.warn('Param append error:', err); } }); } window.addEventListener('DOMContentLoaded', applyParamsToButtons); const observer = new MutationObserver(() => { applyParamsToButtons(); }); observer.observe(document.body, { childList: true, subtree: true });