Hellvetica VC

Hellvetica for vc.ru

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 or Violentmonkey 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         Hellvetica VC
// @namespace    https://vc.ru
// @version      0.1
// @description  Hellvetica for vc.ru
// @author       Alex B, https://vk.com/alexbsoft
// @match        https://vc.ru/*
// @grant      GM_addStyle
// ==/UserScript==
(function() {
    //Добавляем шрифт в сайт и заменяем его для всего текста
    GM_addStyle ( `
@font-face {
  font-family: Hellvetica;
  src: local("Hellvetica"),
       local("Hellvetica"),
       url(https://pidor.men/css/Hellvetica.ttf);
  font-weight: 400;
}
body {
        font-family:    Hellvetica, sans-serif !important;
    }
` );
    //Заменяем лого после загрузки всего контента страницы
    setTimeout(replace_logo, 1000);
    function replace_logo(){
        var logo_a = document.getElementsByClassName("main_menu__logo")[0];
        logo_a.innerHTML='<img src="https://pidor.men/css/hell.svg">';
        console.log(logo_a)
    }
})();