NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name VK Replace Group Title
// @namespace https://vk.com/
// @version 0.1
// @description Replace Group Title
// @author W1ns
// @match http://vk.com/*
// @match https://vk.com/*
// @match http://vk.com/*
// @match https://vk.com/*
// @license MIT
// @grant none
// ==/UserScript==
(function() {
var txt = document.getElementsByClassName('left_label inl_bl')[4].innerHTML;
var gr = txt.replace('Сообщества', 'Группы');
document.getElementsByClassName('left_label inl_bl')[4].innerHTML = gr;
})();