Window Manager

Organize all of your windows and tabs from the side panel.

什麼是Window Manager?

Window Manager是由Stash開發的Chrome擴展程式,該擴展的主要功能是“Organize all of your windows and tabs from the side panel.”。

擴展截圖

screenshot
screenshot

下載Window Manager擴展crx文件

下載Window Manager擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Similar to Tab Manager Plus, this extension lets you easily keep track of all of your open tabs and windows in a single view. 

You can open the side panel using the extension button or the keyboard shortcut (Windows: ALT + M; Mac: option + M). 

There are two view options that make it easier to manage your tabs:

Window View:  
- View all of your open tabs and windows in one place
- Click a tab icon to quickly navigate to that tab
- Drag and drop tabs between windows to conveniently organize your tabs

Vertical Tabs View:
- View the active window's tabs and tab groups in a vertical list
- Select multiple tabs to quickly group, close or move tabs to a new window

The extension is especially helpful if you like to work in fullscreen mode. You can use the vertical tabs in place of the horizontal tab bar by clicking View > Always Show Toolbar in Full Screen.                    

擴展基本資訊

名稱 Window Manager Window Manager
ID npaccibollphhdfghmmlbmpljhdiaehh
官方網址 https://chromewebstore.google.com/detail/window-manager/npaccibollphhdfghmmlbmpljhdiaehh
簡介 Organize all of your windows and tabs from the side panel.
檔案大小 90.83 KB
安裝次數 189
目前版本 0.0.0.2
更新時間 2023-06-29
上架時間 2023-06-28
評分 5.00/5 共 1 次評分
開發者 Stash
電子郵箱 [email protected]
付費類型 free
隱私政策頁面URL http://stash.technology/privacy
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Window Manager",
    "version": "0.0.0.2",
    "description": "Organize all of your windows and tabs from the side panel.",
    "background": {
        "service_worker": "service-worker.js",
        "type": "module"
    },
    "side_panel": {
        "default_path": "sidepanel\/index.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "sidepanel\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "http:\/\/localhost:3000\/*",
            "https:\/\/stash.technology\/*"
        ]
    },
    "action": {
        "default_title": "Open Window Manager",
        "default_icon": {
            "32": "logo.png"
        }
    },
    "icons": {
        "48": "logo.png",
        "128": "logo.png"
    },
    "permissions": [
        "tabs",
        "tabGroups",
        "sidePanel",
        "storage"
    ],
    "incognito": "spanning",
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Alt+M"
            }
        }
    },
    "manifest_version": 3
}