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
公式URL 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
Eメール [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
}