如何自定义Google文档中的工具栏?


9

使用额外的按钮自定义工具栏是否仍然不可能?具体来说,我想添加一个删除线(特别是击键的可怕程度),但是一般的解决方案会更好。

我知道过去至少有一个脚本用于此操作,但是我发现的脚本显然已经过时了(我查看了源代码,无法将其与GDocs的当前布局配合使用)。

我也知道我可以创建脚本来添加其他菜单,但这不是我想要的。

我乐于接受任何允许我向工具栏添加按钮的解决方案,即使这是如何为此编写润滑脂脚本的线索。

Answers:



2

通过调整CSS,可以非常简单地编辑Google Docs工具栏。此Chrome扩展程序可以将自定义CSS注入任何页面:用户CSS-Chrome网上应用店

我用它来隐藏一些我很少使用的按钮,因此可以使浏览器窗口变小,而无需强制右侧的按钮进入“溢出菜单”。

如果可以添加按钮,则为Idk,但是删除它们非常容易。

Google表格默认工具栏(打开溢出菜单):

Google表格默认工具栏

我的“简短”工具栏:

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;
}

0

另一个适合我的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;}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.