VK Sans

Скрипт для ВКонтакте, который устанавливает шрифт VK Sans. Станет более красиво. This script for VK.com installs the VK Sans font. It will become more beautiful.

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

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

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name         VK Sans
// @run-at       document-body
// @namespace    vksans
// @version      1
// @author       CATLYS
// @description  Скрипт для ВКонтакте, который устанавливает шрифт VK Sans. Станет более красиво. This script for VK.com installs the VK Sans font. It will become more beautiful.

// @icon         https://vk.ru/favicon.ico
// @match       *://vk.com/*
// @match       *://*.vk.com/*
// @match       *://userapi.com/*
// @match       *://*.userapi.com/*
// @match       *://vk.me/*
// @match       *://*.vk.me/*
// @match       *://*.vk.ru/*

// @grant    none

// @connect      self

// @license MIT

// ==/UserScript==

(function() {
    'use strict';
document.body.style.setProperty("font-family", "VK Sans Text", "important")
})();