您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Moves the chat to the right column.
当前为
// ==UserScript== // @name Gartic right column chat // @namespace Violentmonkey Scripts // @description Moves the chat to the right column. // @match *://gartic.io/* // @grant none // @license Mit // @version 1.0.0 // @grant GM_addStyle // @author Mops // ==/UserScript== GM_addStyle(` #screenRoom .content { margin-left: -150px; } #chat .history .msg { font-size: 14px !important; margin: 0 8px !important; line-height: 8px !important; } #interaction { position: static !important; margin-top: 5px !important; } #chat { padding: 5px; border: thin solid black; position: absolute !important; background-color: white; width: 200px !important; margin-right: -225px !important; } @media screen and (min-width: 1151px) { #chat { top: 65px; right: 0; height: 560px; } } @media screen and (max-width: 1151px) { #chat { top: 5px; right: 0; height: 495px; } } .textGame label { pointer-events: none !important; } .textGame input[type=text] { height: 22px !important; } #screenRoom :is(.scroll:before, .scroll:after) { display: none !important; } `)