Tab Butler - A full-featured Tab Manager

A tab manager at your service.

What is Tab Butler - A full-featured Tab Manager?

Tab Butler - A full-featured Tab Manager is a Chrome extension developed by Mitchell Mark-George, and its main feature is "A tab manager at your service.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Tab Butler - A full-featured Tab Manager Extension CRX File

Download Tab Butler - A full-featured Tab Manager 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

                        Note: This is a beta release. The full product will be launched on in early 2023.

NEW FEATURE: Tab History Modal!

You can now press Ctrl + Shift + H to search through your most recent history from any tab!

Meet Tab Butler - your all-in-one productivity assistant designed to improve the way you use your browser. With one shortcut, you can now search through all your open tabs with ease and switch to any of them with a single key press or click. You can also perform powerful actions from any tab, allowing you to remember only one easy shortcut instead of multiple difficult ones.

Tab Butler is designed to help you get the most out of your browser and increase your productivity to new levels like never before. With Tab Butler, you can transform your browsing experience for good and find what you want, when you want it.

FEATURES:

- Search and switch to your wanted tab with incredible ease
- Search through you most recent history like never before
- Pin, close, and mute your tabs right from any tab
- Filter tabs based on certain properties (muted, pinned, playing audio) for quicker access
- Perform various browser actions from any tab

COMING SOON:

- Updated UI
- Web Searching right from any tab
- Browse your history and bookmarks from any tab
- More powerful l and personalized actions

And so much more!

HOW TO USE TAB BUTLER:

- To toggle the Tab Search Modal to search your open tabs, press Cmd + Shift + Space (Ctrl + Shift + Space on Windows and Linux).
- To toggle the Tab Action Modal to execute actions, press Option + Shift + Space (Alt + Shift + K on Windows and Linux).
- To toggle the Tab History Modal to search through your recent history, press Ctrl + Shift + H.
- In the Tab Search Modal, type:
    - “\pinned” to get all the pinned tab
    - “\muted” to get all muted tabs
    - “\audible” to get all tabs getting audio

If you would like to provide any feedback, report an issue, or request a feature, please feel free to leave us a review or use this form: https://forms.gle/LTXYy9XqbBYu6ZLQA

Tab Butler is a proud open-source project. If you would like to contribute to Tab Butler, please head over to https://github.com/MItchellMarkGeorge/TabButler                    

Extension Basic Information

Name Tab Butler - A full-featured Tab Manager Tab Butler - A full-featured Tab Manager
ID iiamdlbonhenkdcalhfpkbhgffdmkign
Official URL https://chromewebstore.google.com/detail/tab-butler-a-full-feature/iiamdlbonhenkdcalhfpkbhgffdmkign
Description A tab manager at your service.
File Size 75.08 KB
Installation Count 91
Current Version 1.0.0-beta.4
Last Updated 2022-10-28
Publish Date 2022-07-23
Developer Mitchell Mark-George
Email [email protected]
Payment Type free
Extension Website https://tabbutler.netlify.app
Help Page URL https://github.com/MitchellMarkGeorge/TabButler
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Tab Butler - A full-featured Tab Manager",
    "short_name": "Tab Butler",
    "author": "Mitchell Mark-George",
    "version": "1.0.0.6",
    "version_name": "1.0.0-beta.4",
    "description": "A tab manager at your service.",
    "permissions": [
        "tabs",
        "scripting",
        "history"
    ],
    "host_permissions": [
        ""
    ],
    "offline_enabled": true,
    "icons": {
        "48": "icons\/Tab Butler Logo 48.png",
        "128": "icons\/Tab Butler Logo 128.png"
    },
    "minimum_chrome_version": "88",
    "background": {
        "service_worker": "background\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_idle",
            "js": [
                "content\/content.js"
            ]
        }
    ],
    "commands": {
        "toggle-tab-search": {
            "suggested_key": {
                "default": "Ctrl+Shift+Space",
                "mac": "Ctrl+Shift+Space",
                "windows": "Ctrl+Shift+Space",
                "linux": "Ctrl+Shift+Space"
            },
            "description": "Toggle the Tab Search Modal in the current tab"
        },
        "toggle-tab-actions": {
            "suggested_key": {
                "default": "Alt+Shift+Space",
                "windows": "Alt+Shift+K",
                "linux": "Alt+Shift+K",
                "mac": "Alt+Shift+Space"
            },
            "description": "Toggle Tab Actions Modal in the current tab"
        },
        "toggle-tab-history": {
            "suggested_key": {
                "default": "Ctrl+Shift+H",
                "mac": "MacCtrl+Shift+H",
                "windows": "Ctrl+Shift+H",
                "linux": "Ctrl+Shift+H"
            },
            "description": "Toggle Tab History Modal in the current tab"
        }
    }
}