TopBookmarkToolbar
A convenient bookmarks toolbar on the top of web pages.
What is TopBookmarkToolbar?
TopBookmarkToolbar is a Chrome extension developed by tzengshinfu, and its main feature is "A convenient bookmarks toolbar on the top of web pages.".
Extension Screenshots
Download TopBookmarkToolbar Extension CRX File
Download TopBookmarkToolbar extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | TopBookmarkToolbar |
ID | obbhcemdieglpilieepgcbhpocmbkphm |
Official URL | https://chromewebstore.google.com/detail/topbookmarktoolbar/obbhcemdieglpilieepgcbhpocmbkphm |
Description | A convenient bookmarks toolbar on the top of web pages. |
File Size | 10.89 KB |
Installation Count | 49 |
Current Version | 1.1.2 |
Last Updated | 2017-04-05 |
Publish Date | 2017-04-05 |
Rating | 3.00/5 Total 3 Ratings |
Developer | tzengshinfu |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } |