W1ns / VK Replace Group Title

// ==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;
})();