Twitch: Compact Chat

Larger video in theater mode with smaller chat and emote zoom on hover

目前为 2019-03-05 提交的版本。查看 最新版本

// ==UserScript==
// @name         Twitch: Compact Chat
// @namespace    http://tampermonkey.net/
// @version      2019.03.06
// @description  Larger video in theater mode with smaller chat and emote zoom on hover
// @author       cmcooper123
// @match        https://www.twitch.tv/*
// @match        http://www.twitch.tv/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
	(document.head || document.documentElement).insertAdjacentHTML('beforeend',
		'<style>' +
          '.channel-root__right-column { width: 26rem!important; }' +
          '.persistent-player--theatre { width: calc(100% - 26rem)!important; }' +
          '.chat-line__message, .chat-line__moderation, .chat-line__status { padding: .3rem 0!important; }' +
          '.rooms-header { height: unset!important; }' +
          '.user-notice-line { padding-left: 0.1rem!important; }' +
          '.chat-input.tw-pd-b-2.tw-pd-x-2 { padding-left: 0 !important; padding-right: 0 !important; padding-bottom: 0 !important; }' +
          '.tw-textarea { margin-bottom: -1rem!important; }' +
          '.chat-input .tw-textarea--no-resize { max-height: 50px!important; }' +
          '.chat-line__message--emote:hover { transform: scale(2)!important; }' +
        '</style>'
     );
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址