Tab Menu
A minimalist tab manager. Search, switch, rearrange, and close tabs from the toolbar menu.
What is Tab Menu?
Tab Menu is a Chrome extension developed by Ye, and its main feature is "A minimalist tab manager. Search, switch, rearrange, and close tabs from the toolbar menu.".
Extension Screenshots
Download Tab Menu Extension CRX File
Download Tab Menu 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
Tab Menu is a minimalist tab manager for Chrome. It enables you to search, switch, rearrange, and close tabs from the toolbar menu. It supports both mouse operations as well as keyboard operations. This extension was originally created by Frank Yan, who stopped maintaining it around mid 2013. I recovered it from my installation and maintain it on GitHub, for the sake of those who love it.
Extension Basic Information
Name | Tab Menu |
ID | hjeifjagcmihmdcmnfjelgdgpibefmfc |
Official URL | https://chromewebstore.google.com/detail/tab-menu/hjeifjagcmihmdcmnfjelgdgpibefmfc |
Description | A minimalist tab manager. Search, switch, rearrange, and close tabs from the toolbar menu. |
File Size | 61.54 KB |
Installation Count | 4,682 |
Current Version | 9.0.3 |
Last Updated | 2018-04-28 |
Publish Date | 2018-04-28 |
Rating | 4.60/5 Total 47 Ratings |
Developer | Ye |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "manifest_version": 2, "name": "Tab Menu", "description": "A minimalist tab manager. Search, switch, rearrange, and close tabs from the toolbar menu.", "version": "9.0.3", "browser_action": { "default_icon": { "16": "16.png", "32": "35.png", "48": "48.png", "128": "128.png" }, "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ] }, "options_ui": { "page": "options.html", "chrome_style": true, "open_in_tab": false }, "icons": { "16": "16.png", "32": "35.png", "48": "48.png", "128": "128.png" }, "permissions": [ "tabs", "storage", "contextMenus" ], "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx" } |