Greasy Fork

Greasy Fork is available in English.

Остановить новый диз VK

Удаляем редирект ВК

目前为 2016-07-20 提交的版本,查看 最新版本

// ==UserScript==
// @name		 Остановить новый диз VK
// @version		 1.1
// @description	 Удаляем редирект ВК
// @author		 ICP
// @match		 *://*.vk.com/*
// @exclude		 *://vk.com/*
// @exclude		 *://m.vk.com/
// @exclude		 *://new.vk.com/about
// @exclude		 *://new.vk.com/products
// @exclude		 *://new.vk.com/dev
// @exclude		 *://new.vk.com/dev/*
// @exclude		 *://new.vk.com/blog
// @exclude		 *://new.vk.com/blog/*
// @run-at		 document-start
// @grant		 GM_xmlhttpRequest
// @connect		 *.vk.com
// @namespace	 ICP
// @run-at		 document-start
// ==/UserScript==

var urls = window.location.href.replace(/(http.*):.*vk.com\//i, '$1://vk.com/');
var form = document.createElement('form');
form.method = 'post';
form.action = urls;
document.head.appendChild(form);
form.submit();