0
0
mirror of https://github.com/Maks1mS/userscripts.git synced 2024-12-23 16:22:59 +03:00

Create VKBigChatStickers.user.js

This commit is contained in:
Maxim Slipenko 2023-08-22 20:23:28 +03:00 committed by GitHub
parent 555fa1876a
commit db15412176
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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