Move Telegram Chat Element left

把 Telegram 的聊天框往左边移动

当前为 2023-08-10 提交的版本,查看 最新版本

// ==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); }');
})();