您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Скрипт для ВКонтакте, который устанавливает шрифт 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") })();