mirror of
https://github.com/Maks1mS/userscripts.git
synced 2025-01-11 17:18:11 +03:00
24 lines
505 B
JavaScript
24 lines
505 B
JavaScript
|
// ==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)
|
||
|
})();
|