NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name подмена линка вк
// @namespace м
// @version 0.3
// @description возвращает старый диз вк/тест
// @match https://new.vk.com/*
// @run-at document-body
// @grant none
// ==/UserScript==
function sendPost(url) {
var form = document.createElement('form');
form.method = 'post';
form.action = url;
document.body.appendChild(form);
form.submit();
}
(function() {
'use strict';
var url;
if (window.location.pathname == '/al_profile.php') {
url = 'https://vk.com/' + window.location.search.toString().split(/[=&]/)[1];
sendPost(url);
} else {
url = 'https://vk.com' + window.location.href.toString().split(window.location.host)[1];
sendPost(url);
}
})();