Google 工具栏按钮的制作非常简单,只是一个有着特定标签的 XML 文件,Google 工具栏主页有完整的制作指南。具体的代码就像下面这样:

<?xml version="1.0" encoding="utf-8" ?>
<custombuttons xmlns="http://toolbar.google.com/custombuttons/">
	<button>
		<title>Face to Face - Faceker.com</title>
		<title locale="zh-CN">面对面 - Faceker.com</title>
		<description>Face to Face - Faceker.com</description>
		<description locale="zh-CN">面对面 - Faceker.com</description>
		<site>http://www.faceker.com</site>
		<feed>http://www.faceker.com/feed</feed>
		<update>http://www.faceker.com/gbuttons/faceker.xml</update>
		<icon mode="base64" type="image/x-icon">
			AAABAAEAEBAAAAEAIAB ......
		</icon>
	</button>
</custombuttons>

工具栏按钮的图标需转换为 BASE64,Base64 Online 提供的工具可以将图标转换为 Base64 编码的数据。

起初以为 Custombuttons 内可包含多个 Button,但实际制作以后发现既使包含多个 Button,但只有第一个按钮才有效,也就是说一个 XML 文件里只能建立一个按钮。

下面是自己制作的一些按钮,存档在这儿,以备以后使用:

自己制作的 Google 工具栏按钮
自己制作的 Google 工具栏按钮

安装 Google AdSense 按钮
安装 Google Analytics 按钮
安装 Todoist 按钮
安装 Faceker.com 按钮