NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name "Сообщения" вместо "Мессенджера" для ВК // @namespace https://mjkey.ru/ // @version 0.1 // @description Меняет "Мессенджер" обратно на "Сообщения" // @copyright 2020, MjKey | MjKey.ru // @author MjKey // @match https://vk.com/* // @require https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; var zag = $('title').html(); if(zag = 'Мессенджер') { $('title').html('Сообщения'); } $('#l_msg').click(function() { setTimeout(function () { var zag = $('title').html(); if(zag = 'Мессенджер') { $('title').html('Сообщения'); } }, 800); }); $('#l_msg .left_label').html('Сообщения'); })();