Tab Butler - A full-featured Tab Manager

A tab manager at your service.

Hvad er Tab Butler - A full-featured Tab Manager?

Tab Butler - A full-featured Tab Manager er en Chrome-udvidelse udviklet af Mitchell Mark-George, og dens hovedfunktion er "A tab manager at your service.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download Tab Butler - A full-featured Tab Manager-udvidelses-CRX-fil

Download Tab Butler - A full-featured Tab Manager-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Tab Butler - A full-featured Tab Manager Tab Butler - A full-featured Tab Manager
ID iiamdlbonhenkdcalhfpkbhgffdmkign
Officiel URL https://chromewebstore.google.com/detail/tab-butler-a-full-feature/iiamdlbonhenkdcalhfpkbhgffdmkign
Beskrivelse A tab manager at your service.
Filstørrelse 75.08 KB
Antal Installationer 91
Nuværende Version 1.0.0-beta.4
Senest Opdateret 2022-10-28
Udgivelsesdato 2022-07-23
Udvikler Mitchell Mark-George
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://tabbutler.netlify.app
Hjælpeside-URL https://github.com/MitchellMarkGeorge/TabButler
Understøttede Sprog 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"
        }
    }
}