Tab Butler - A full-featured Tab Manager

A tab manager at your service.

什么是Tab Butler - A full-featured Tab Manager?

Tab Butler - A full-featured Tab Manager是由Mitchell Mark-George开发的Chrome扩展程序,该扩展的主要功能是“A tab manager at your service.”。

扩展截图

screenshot
screenshot
screenshot

下载Tab Butler - A full-featured Tab Manager扩展crx文件

下载Tab Butler - A full-featured Tab Manager扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Tab Butler - A full-featured Tab Manager Tab Butler - A full-featured Tab Manager
ID iiamdlbonhenkdcalhfpkbhgffdmkign
官方URL https://chromewebstore.google.com/detail/tab-butler-a-full-feature/iiamdlbonhenkdcalhfpkbhgffdmkign
简介 A tab manager at your service.
文件大小 75.08 KB
安装次数 91
当前版本 1.0.0-beta.4
更新时间 2022-10-28
上架时间 2022-07-23
开发者 Mitchell Mark-George
电子邮箱 [email protected]
付费类型 free
扩展官网 https://tabbutler.netlify.app
帮助页面URL https://github.com/MitchellMarkGeorge/TabButler
支持的语言 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"
        }
    }
}