您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Hides the annoying side panels
当前为
// ==UserScript== // @name Bitrix decrapifier // @namespace com.firefueled.biitrixdecrapifier // @include https://*.bitrix24*/* // @version 1 // @grant none // @description Hides the annoying side panels // ==/UserScript== var styles = " \ .bx-layout-inner-left { \ padding: 0; \ width: 0; \ } \ \ .bx-layout-inner-left, #bx-im-bar { \ visibility: collapse; \ } \ \ .bx-layout-inner-table { \ padding-left: 3em; \ padding-right: 3em; \ } \ \ table.bx-layout-inner-inner-table td.bx-layout-inner-inner-cont { \ padding: 0; \ } \ \ td.bx-layout-inner-inner-cont { \ padding: 0; \ } \ "; function addGlobalStyle(css) { try { var elmHead, elmStyle; elmHead = document.getElementsByTagName('head')[0]; elmStyle = document.createElement('style'); elmStyle.type = 'text/css'; elmHead.appendChild(elmStyle); elmStyle.innerHTML = css; } catch (e) { if (!document.styleSheets.length) { document.createStyleSheet(); } document.styleSheets[0].cssText += css; } } addGlobalStyle(styles);
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址