NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name VK experts button // @namespace http://tampermonkey.net/ // @version 0.1 // @license MIT // @description add VK experts button to left menu // @author afeeee // @match https://*.vk.com/* // @downloadURL https://openuserjs.org/install/afeeee/VK_experts_button.user.js // @updateURL https://openuserjs.org/meta/afeeee/VK_experts_button.meta.js // @copyright 2020, afeeee (https://openuserjs.org/users/afeeee) // ==/UserScript== (function() { var sidebar = document.getElementById("side_bar_inner") .children[0].children[0]; sidebar.innerHTML += '<li id="l_ex" class=""><a href="/experts" class="left_row"><span class="left_fixer"><span class="left_count_wrap fl_r left_void"><span class="inl_bl left_count_sign">0</span></span><span class="left_icon fl_l"></span><span class="left_label inl_bl">Карточка Эксперта</span></span></a><div class="left_settings" onclick="menuSettings(3)"><div class="left_settings_inner"></div></div></li>'; })();