Skip to content

Instantly share code, notes, and snippets.

@davidmz
Last active August 1, 2019 08:15
Show Gist options
  • Save davidmz/1056005 to your computer and use it in GitHub Desktop.
Save davidmz/1056005 to your computer and use it in GitHub Desktop.
Букмарклет для ссылок на mp3 вконтакте #bookmarklet
javascript:(function() { var its = document.querySelectorAll("input[type='hidden'][id^='audio_'][value*='.mp3']"); for (var i = 0; i < its.length; i++) { var a = document.createElement('a'); a.href = its[i].value.replace(/,\d+$/, ''); its[i].parentNode.insertBefore(a, its[i]); a.innerHTML = "mp3"; } })();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment