Answers:
自 2016年11月5日斯科特·埃瑟(Scott Esser)起(略有上下文!):
更改Google办公产品(文档,表格和幻灯片)中工具栏的唯一方法是说服Google
通过调整CSS,可以非常简单地编辑Google Docs工具栏。此Chrome扩展程序可以将自定义CSS注入任何页面:用户CSS-Chrome网上应用店
我用它来隐藏一些我很少使用的按钮,因此可以使浏览器窗口变小,而无需强制右侧的按钮进入“溢出菜单”。
如果可以添加按钮,则为Idk,但是删除它们非常容易。
Google表格默认工具栏(打开溢出菜单):
我的“简短”工具栏:
这是我曾经使用过的CSS:
#t-num-fmt-currency,
#t-num-fmt-percent,
#t-strikethrough,
#t-text-rotation,
#t-zoom,
#t-undo,
#t-redo,
#t-print,
#t-zoom-separator{
display: none;
}
.docs-material #docs-toolbar-wrapper,
.docs-material #docs-equationtoolbar {
padding: 0 4px 0 4px;
}
另一个适合我的CSS版本,也许适合其他人。
#t-num-fmt-currency,
#t-num-fmt-percent,
#t-num-fmt-decimal-decrease,
#t-num-fmt-decimal-increase,
#t-num-fmt-other,
#docs-font-family,
#docs-font-size,
#t-text-rotation,
#t-cell-color-separator,
#t-docs-font-family-separator,
#t-docs-font-size-separator,
#t-bold-separator,
#t-num-fmt-currency-separator,
#t-merge-button,
#t-merge-menu,
#t-align-separator,
#t-moreButton,
#t-docs-toolbar-wrapper,
#t-viewModeButton,
#t-align,
#t-valign,
#t-textwrap,
#t-insert-doco,
#t-insert-chart,
#inputToolsSeparator,
#inputToolsToggleButton,
#t-zoom-separator{display: none;}