0
0
mirror of https://github.com/Maks1mS/userscripts.git synced 2025-04-05 00:53:50 +03:00

Compare commits

..

No commits in common. "9cad4d315b84bccb913e622a66506a56dc34eb78" and "38b3fe10be2c454807cfcce3a15abfa8b29ad49f" have entirely different histories.

View File

@ -1,7 +1,7 @@
// ==UserScript== // ==UserScript==
// @name VK Big Chat Stickers // @name VK Big Chat Stickers
// @namespace https://github.com/Maks1mS/userscripts // @namespace https://github.com/Maks1mS/userscripts
// @version 0.3 // @version 0.2
// @description Increases size of chat stickers // @description Increases size of chat stickers
// @author Maxim Slipenko // @author Maxim Slipenko
// @match https://vk.com/* // @match https://vk.com/*
@ -9,28 +9,24 @@
// @grant GM_addStyle // @grant GM_addStyle
// ==/UserScript== // ==/UserScript==
(function () { (function() {
'use strict'; 'use strict';
const style = ` const style = `
.sticker_img_wrapper:has(.StickerUGC) { img.StickerUGC {
width: 256px; width: 256px;
height: 256px; height: 256px;
} }
img.StickerUGC {
height: 100%;
width: 100%;
}
.StickersEmojiKeyboard-module__in--GCR5_:has(.StickersKeyboardGroupItem-module__in--CKjkC.StickersKeyboardGroupItem-module__inActive--iqstp > div[aria-label="Стикеры чата"]) .StickersKeyboard-module__keyboard--HhSGu.View-module__panel--WNKKi.View-module__panelSwitched--hg3jP { .StickersEmojiKeyboard-module__in--GCR5_:has(.StickersKeyboardGroupItem-module__in--CKjkC.StickersKeyboardGroupItem-module__inActive--iqstp > div[aria-label="Стикеры чата"]) .StickersKeyboard-module__keyboard--HhSGu.View-module__panel--WNKKi.View-module__panelSwitched--hg3jP {
--stickers-columns: 2 !important; --stickers-columns: 2 !important;
--stickers-size: 172px !important; --stickers-size: 172px !important;
} }
.StickersEmojiKeyboard-module__in--GCR5_:has(.StickersKeyboardGroupItem-module__in--CKjkC.StickersKeyboardGroupItem-module__inActive--iqstp > div[aria-label="Стикеры чата"]) .Sticker-module__sticker--CtZU6.Sticker-module__tappable--M4lob.StickersKeyboardRow-module__sticker--m7W0R { .StickersEmojiKeyboard-module__in--GCR5_:has(.StickersKeyboardGroupItem-module__in--CKjkC.StickersKeyboardGroupItem-module__inActive--iqstp > div[aria-label="Стикеры чата"]) .Sticker-module__sticker--CtZU6.Sticker-module__tappable--M4lob.StickersKeyboardRow-module__sticker--m7W0R {
--sticker-size: 172px !important; --sticker-size: 172px !important;
--sticker-scale: 2 !important; --sticker-scale: 2 !important;
width: 172px !important; width: 172px !important;
height: 172px !important; height: 172px !important;
} }
`; `;