TopBookmarkToolbar
A convenient bookmarks toolbar on the top of web pages.
什么是TopBookmarkToolbar?
TopBookmarkToolbar是由tzengshinfu开发的Chrome扩展程序,该扩展的主要功能是“A convenient bookmarks toolbar on the top of web pages.”。
扩展截图
下载TopBookmarkToolbar扩展crx文件
下载TopBookmarkToolbar扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A convenient bookmarks toolbar on the top of web pages. v1.1.0 Release Notes: [1]Add collapse menu function. -> when root bookmarks overflowed toolbar [2]Add pause showing toolbar in 10sec function. -> on right click menu v1.1.2 Bug fixes: [1]Fix menu without scrollbar. -> when bookmarks go out of window viewable area
扩展基本信息
名称 | TopBookmarkToolbar |
ID | obbhcemdieglpilieepgcbhpocmbkphm |
官方URL | https://chromewebstore.google.com/detail/topbookmarktoolbar/obbhcemdieglpilieepgcbhpocmbkphm |
简介 | A convenient bookmarks toolbar on the top of web pages. |
文件大小 | 10.89 KB |
安装次数 | 49 |
当前版本 | 1.1.2 |
更新时间 | 2017-04-05 |
上架时间 | 2017-04-05 |
评分 | 3.00/5 共3次评分 |
开发者 | tzengshinfu |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "description": "__MSG_appDesc__", "version": "1.1.2", "default_locale": "en", "minimum_chrome_version": "26", "manifest_version": 2, "permissions": [ "bookmarks", "contextMenus", "activeTab" ], "icons": { "16": "icon_16.png", "48": "icon_48.png", "128": "icon_128.png" }, "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content_scripts.js" ], "css": [ "mystyles.css" ], "run_at": "document_end" } ], "web_accessible_resources": [ "folder.png", "url.png", "collapse.png", "pause.png" ] } |