Window Manager

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

O que é Window Manager?

Window Manager é uma extensão do Chrome desenvolvida por Stash, e sua principal característica é "Organize all of your windows and tabs from the side panel.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Window Manager

Baixe arquivos de extensão Window 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

                        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.                    

Informações Básicas da Extensão

Nome Window Manager Window Manager
ID npaccibollphhdfghmmlbmpljhdiaehh
URL Oficial https://chromewebstore.google.com/detail/window-manager/npaccibollphhdfghmmlbmpljhdiaehh
Descrição Organize all of your windows and tabs from the side panel.
Tamanho do Arquivo 90.83 KB
Contagem de Instalações 189
Versão Atual 0.0.0.2
Última Atualização 2023-06-29
Data de Publicação 2023-06-28
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Stash
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade http://stash.technology/privacy
Idiomas Suportados 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
}