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
官方網址 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"
        }
    }
}