AutoSwitchOldMail

Замена линков ведущих на новую почту линками ко старому интерфейсу почты. Если задолбала новая почта то это ваш скрипт.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name           AutoSwitchOldMail
// @namespace      virtonomica
// @author         mr_Sumkin
// @description    Замена линков ведущих на новую почту линками ко старому интерфейсу почты. Если задолбала новая почта то это ваш скрипт.
// @include        http*://virtonomic*.*/*
// @require        https://code.jquery.com/jquery-1.11.1.min.js
// @version        1.01
// ==/UserScript==
$ = jQuery = jQuery.noConflict(true);
$(document).ready(() => {
    let $a = $(document.body).find("a[href$='/main/user/privat/persondata/message']");
    $a.each((i, el) => {
        let href = el.getAttribute("href");
        el.setAttribute("href", href + "?old");
    });
});