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:
parent
555fa1876a
commit
db15412176
23
VKBigChatStickers/VKBigChatStickers.user.js
Normal file
23
VKBigChatStickers/VKBigChatStickers.user.js
Normal 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)
|
||||
})();
|
Loading…
Reference in New Issue
Block a user