您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Prevent the Jitsi toolbox from sliding away
// ==UserScript== // @name Jitsi always show toolbox // @namespace http://artificialworlds.net // @version 0.2 // @description Prevent the Jitsi toolbox from sliding away // @author Andy Balaam // @include https://meet.*.space/* // @match https://meet.jit.si/* // @grant none // ==/UserScript== (function() { 'use strict'; function addStyle(css) { const style = document.getElementById("GM_addStyleContainer") || (function() { const style = document.createElement('style'); style.type = 'text/css'; style.id = "GM_addStyleContainer"; document.head.appendChild(style); return style; })(); const sheet = style.sheet; sheet.insertRule(css, (sheet.rules || sheet.cssRules || []).length); } // AndyB: Make toolbox always visible addStyle(` .new-toolbox { bottom: 0; height: 42px; } `); addStyle(` .toolbox-content-items { padding: 0px; } `); addStyle(` .toolbox-content { margin-bottom: 0px; } `); addStyle(` .tile-view { align-content: start; } `); addStyle(` #videospace { height: calc(100% - 24px); max-height: calc(100% - 24px); } `); addStyle(` .tile-view #filmstripRemoteVideos { height: calc(100% - 24px); } `); addStyle(` .vertical-filmstrip .filmstrip.reduce-height { height: 100%; } `); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址