Last active
August 1, 2019 08:15
-
-
Save davidmz/1056005 to your computer and use it in GitHub Desktop.
Букмарклет для ссылок на mp3 вконтакте #bookmarklet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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