Greasy Fork is available in English.

Sticker Size

01.09.2023, 19:52:16

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
// ==UserScript==
// @name        Sticker Size
// @license     MIT
// @match       https://vk.com/*
// @grant       GM_addStyle
// @version     1.0
// @author      seneaL
// @description 01.09.2023, 19:52:16
// @namespace https://greasyfork.org/users/541945
// ==/UserScript==

(function() {
    'use strict';
    var newStyle = '.sticker_img { height: 100px !important; width: auto !important }';
    GM_addStyle(newStyle);
})();