您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Expanding and moving the FFZ emoji panel
当前为
// ==UserScript== // @name FFZ Panel Resize 1.2.1 // @namespace http://tampermonkey.net/ // @version 1.2.1 // @description Expanding and moving the FFZ emoji panel // @author gullampis810 // @match *://*.twitch.tv/* // @license MIT // @icon https://png.pngtree.com/png-vector/20220703/ourmid/pngtree-send-dark-mode-glyph-icon-png-image_5561369.png // @grant GM_addStyle // ==/UserScript== (function() { 'use strict'; // кнопка Chat Paused Due to Scroll // const observer = new MutationObserver(() => { const buttonContainer = document.querySelector('.tw-absolute.tw-border-radius-medium.tw-bottom-0.tw-c-background-overlay.tw-c-text-overlay.tw-mg-b-1'); if (buttonContainer) { buttonContainer.style.height = '34px'; buttonContainer.style.minHeight = '34px'; buttonContainer.style.maxHeight = '34px'; console.log('Высота контейнера кнопки установлена на 34px'); } }); observer.observe(document.body, { childList: true, subtree: true }); // Добавляем стили для изменения размеров контейнера эмодзи GM_addStyle(` .emote-picker__controls-container.tw-relative { bottom: 3px; } .emote-picker { width: 107rem !important; /* Увеличенная ширина */ height: 100rem !important; /* Увеличенная высота */ left: 24px; /* Сдвиг влево */ position: relative; } .ffz--emote-picker { position: relative !important; height: 785px !important; width: 1097px !important; left: -243px !important; } .ffz--emote-picker.ffz--emote-picker__tall .emote-picker__nav-content-overflow, .ffz--emote-picker.ffz--emote-picker__tall .emote-picker__tab-content { height: unset !important; max-height: 73rem !important; } .tw-absolute.ffz-attached.ffz-attached--right.ffz-attached--up { width: 857px !important; right: 368px !important; bottom: 533px !important; } /* fix ballon when clicked ffz emote picke in chat input */ .ffz-balloon.ffz-balloon--auto.tw-inline-block.tw-border-radius-large.tw-c-background-base.tw-c-text-inherit.tw-elevation-2.ffz--emote-picker.ffz--emote-picker__tall { top: 290px !important; } .ffz-attached--up { bottom: 510% !important; } .tw-border-b.tw-border-l.tw-border-r.tw-border-t.tw-border-radius-medium.tw-c-background-base.tw-elevation-1 { width: 63px; height: 216px; } .tw-absolute { position: absolute !important; height: 570px !important; } .tw-border-b.tw-border-l.tw-border-r.tw-border-t.tw-border-radius-medium.tw-c-background-base.tw-elevation-1 { width: 60px !important; height: 200px !important; bottom: 6px !important; position: absolute !important; right: 5px !important; } // emoji standard color choice mini panel // `); console.log("[FFZ Emote Panel] Контейнер .emote-picker изменен: шире, выше, сдвинут влево."); })();