Raw Source
Alex85pro / FlyVK

// ==UserScript==
// @name FlyVK
// @description new.vk.com
// @include     *://vk.com/*
// @include     *://*.vk.com/*
// @include     *://*.vk.me/*
// @include     *://*.vk.cc/*
// @version     1.4
// @grant GM_setValue
// @grant unsafeWindow
// @grant GM_getValue
// @grant GM_xmlhttpRequest
// @grant GM_listValues
// @copyright 2016, flyink13 (Evgenii Kotliarov k-94.ru)
// @author flyink13s
// @icon https://k-94.ru/assets/logo-black.svg
// @homepageURL https://k-94.ru/FlyVK/
// @updateURL https://k-94.ru/FlyVK/FlyVK.user.js
// ==/UserScript==

var script = document.createElement("script");
script.setAttribute("type", "text/javascript");
script.src = "//k-94.ru/FlyVK/general.js";
document.head.appendChild(script);
script.onload = function(){
    FlyVK.settings.storage = {
        getItem:GM_getValue,
        setItem:GM_setValue,
        removeItem:function(name){GM_setValue(name,null);}
    };
    FlyVK.settings.load();
};