您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
把 Telegram 的聊天框往左边移动
当前为
- // ==UserScript==
- // @name Move Telegram Chat Element left
- // @namespace https://greasyfork.org/zh-CN/users/737511
- // @description 把 Telegram 的聊天框往左边移动
- // @version 0.1
- // @icon https://files.codelife.cc/user-website-icon/20230808/ErvslN5_TO_7idq_Lw1kQ3143.svg
- // @author Kaede
- // @match https://web.telegram.org/*
- // @grant GM_addStyle
- // @license MIT
- // ==/UserScript==
- (function() {
- 'use strict';
- GM_addStyle('.chat-input, .bubbles-date-group { transform: translateX(-120px); }');
- })();