Greasy Fork镜像 支持简体中文。

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

2024/4/1 14:23:54

  1. // ==UserScript==
  2. // @name 飞书插件左侧显示 feishuPluginLeft0{left:0}
  3. // @namespace leizingyiu.net
  4. // @match *://*.feishu.cn/base/*
  5. // @grant none
  6. // @version 1.0
  7. // @author leizingyiu
  8. // @description 2024/4/1 14:23:54
  9. // @license GNU AGPLv3
  10. // ==/UserScript==
  11.  
  12. if(window.location.href.match(/https*:\/\/\S*\.feishu\.cn\/base\/.*/)){
  13. let s=document.createElement('style');
  14. s.innerText=`
  15. .garr-container.suite-body.flex.garr-container-bitable {
  16. margin-left: 400px;
  17. overflow: visible!important;
  18. }
  19. .extension-market-v4.extension-market-v4-spread {
  20. position: absolute;
  21. left: -400px;
  22. }
  23.  
  24. .bitable-block-switcher,
  25. .bitable-view-head-wrapper {
  26. right: 0!important;
  27. }
  28. #bitable-container {
  29. right: 0!important;
  30. }`;
  31. document.body.appendChild(s);
  32. };

QingJ © 2025

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