From db1541217696e1a0814a87c6900384b86d8a7b31 Mon Sep 17 00:00:00 2001 From: Maxim Slipenko Date: Tue, 22 Aug 2023 20:23:28 +0300 Subject: [PATCH] Create VKBigChatStickers.user.js --- VKBigChatStickers/VKBigChatStickers.user.js | 23 +++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 VKBigChatStickers/VKBigChatStickers.user.js diff --git a/VKBigChatStickers/VKBigChatStickers.user.js b/VKBigChatStickers/VKBigChatStickers.user.js new file mode 100644 index 0000000..6f35f3e --- /dev/null +++ b/VKBigChatStickers/VKBigChatStickers.user.js @@ -0,0 +1,23 @@ +// ==UserScript== +// @name VK Big Chat Stickers +// @namespace https://github.com/Maks1mS/userscripts +// @version 0.1 +// @description Increases size of chat stickers +// @author Maxim Slipenko +// @match https://vk.com/im* +// @icon https://vk.com/favicon.ico +// @grant GM_addStyle +// ==/UserScript== + +(function() { + 'use strict'; + + const style = ` + img.StickerUGC { + width: 256px; + height: 256px; + } + `; + + GM_addStyle(style) +})();