Last active
June 27, 2017 22:15
-
-
Save astrochili/160e6953da52ac3dbf66f03260861995 to your computer and use it in GitHub Desktop.
Works on mobile version (https://m.vk.com/audio). 28 June 2017.
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
| // 1. Open https://m.vk.com/audio | |
| // 2. Scroll music page to the end | |
| // 3. Open develop console | |
| // 4. Run this code to connect jquery | |
| var script = document.createElement("script"); | |
| script.src = "https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js", script.type="text/javascript", document.getElementsByTagName("head")[0].appendChild(script); | |
| // 5. Run this code for deleting | |
| $(document).find('.audio_item').each(function() { | |
| var data_id = $(this).attr('data-id') | |
| audioplayer.del(data_id, event); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment