Skip to content

Instantly share code, notes, and snippets.

View NikIvan's full-sized avatar

Mykyta Ivanchenko NikIvan

  • Kiev, Ukraine, East Europe, Terra, Sol, Local Interstellar Cloud, Local Bubble, Gould Belt, Orion-Cygnus Arm, Milky Way, Milky Way Subgroup, Local Galactic Group, Virgo Supercluster, Laniakea Supercluster, Observable Universe, Universe
View GitHub Profile
@NikIvan
NikIvan / vk_url.js
Created October 30, 2016 22:16
vk.com tracking urls to real
var nodeList = document.querySelectorAll('a[href^="/away.php?to=http"]');
var elements = [];
for(var i = 0, len = nodeList.length; i <= len; i += 1) {
elements.push(nodeList[i]);
}
elements.forEach((el, i) => {
var goodHref = decodeURIComponent(el.href);
goodHref = goodHref.slice(27, goodHref.indexOf('&post='));