VK Sans

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

  1. // ==UserScript==
  2. // @name VK Sans
  3. // @run-at document-body
  4. // @namespace vksans
  5. // @version 0.1
  6. // @author CATLYS
  7. // @description Скрипт для ВКонтакте, который устанавливает шрифт VK Sans. Станет более красиво. This script for VK.com installs the VK Sans font. It will become more beautiful.
  8.  
  9. // @icon https://vk.com/favicon.ico
  10. // @match *://vk.com/*
  11. // @match *://*.vk.com/*
  12. // @match *://userapi.com/*
  13. // @match *://*.userapi.com/*
  14. // @match *://vk.me/*
  15. // @match *://*.vk.me/*
  16. // @match *://*.vk.ru/*
  17.  
  18. // @grant none
  19.  
  20. // @connect self
  21.  
  22. // @license GNU GPL
  23.  
  24. // ==/UserScript==
  25.  
  26. (function() {
  27. 'use strict';
  28. document.body.style.setProperty("font-family", "VK Sans Text", "important")
  29. })();