Greasy Fork is available in English.

飞书插件左侧显示 feishuPluginLeft0{left:0}

2024/4/1 14:23:54

// ==UserScript==
// @name        飞书插件左侧显示 feishuPluginLeft0{left:0}
// @namespace   leizingyiu.net
// @match       *://*.feishu.cn/base/*
// @grant       none
// @version     1.0
// @author      leizingyiu
// @description 2024/4/1 14:23:54
// @license     GNU AGPLv3 
// ==/UserScript==

if(window.location.href.match(/https*:\/\/\S*\.feishu\.cn\/base\/.*/)){
  let s=document.createElement('style');
  s.innerText=`
.garr-container.suite-body.flex.garr-container-bitable {
	margin-left: 400px;
	overflow: visible!important;
}
.extension-market-v4.extension-market-v4-spread {
	position: absolute;
	left: -400px;
}

.bitable-block-switcher,
.bitable-view-head-wrapper {
	right: 0!important;
}
#bitable-container {
	right: 0!important;
}`;
  document.body.appendChild(s);
};