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
const TAU = 2 * Math.PI; | |
const EPSILON = 1e-3; | |
const skinLayout = [ | |
{ | |
head: [ | |
{ | |
l: { x: 16, y: 8, w: 8, h: 8 }, | |
r: { x: 0, y: 8, w: 8, h: 8 }, | |
u: { x: 8, y: 0, w: 8, h: 8 }, |
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 VK page like https://vk.com/audios<ID> | |
2. Scroll down to load all music | |
3. Press F12 | |
4. Paste this code to Console | |
5. Press Enter | |
6. Wait. | |
Do not interact with tab!! | |
Tested on Google Chrome |
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
<div class="container"> | |
<div class="tools"> | |
<div class="colors"> | |
<button data-color="0" class="bg-1">&0</button> | |
<button data-color="1" class="bg-2">&1</button> | |
<button data-color="2" class="bg-3">&2</button> | |
<button data-color="3" class="bg-4">&3</button> | |
<button data-color="4" class="bg-5">&4</button> | |
<button data-color="5" class="bg-6">&5</button> | |
<button data-color="6" class="bg-7">&6</button> |