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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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
}