Tab Butler - A full-featured Tab Manager

A tab manager at your service.

O que é Tab Butler - A full-featured Tab Manager?

Tab Butler - A full-featured Tab Manager é uma extensão do Chrome desenvolvida por Mitchell Mark-George, e sua principal característica é "A tab manager at your service.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Tab Butler - A full-featured Tab Manager

Baixe arquivos de extensão Tab Butler - A full-featured Tab Manager no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Tab Butler - A full-featured Tab Manager Tab Butler - A full-featured Tab Manager
ID iiamdlbonhenkdcalhfpkbhgffdmkign
URL Oficial https://chromewebstore.google.com/detail/tab-butler-a-full-feature/iiamdlbonhenkdcalhfpkbhgffdmkign
Descrição A tab manager at your service.
Tamanho do Arquivo 75.08 KB
Contagem de Instalações 91
Versão Atual 1.0.0-beta.4
Última Atualização 2022-10-28
Data de Publicação 2022-07-23
Desenvolvedor Mitchell Mark-George
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://tabbutler.netlify.app
URL da Página de Ajuda https://github.com/MitchellMarkGeorge/TabButler
Idiomas Suportados 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"
        }
    }
}