VK Sans

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

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

// @icon         https://vk.com/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 GNU GPL

// ==/UserScript==

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