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) +})();