Virtual Desktops

Place Chrome windows on virtual desktops using a tiling grid

Virtual Desktops란 무엇입니까?

Virtual Desktops은(는) Rudolf Polzer에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Place Chrome windows on virtual desktops using a tiling grid"입니다.

확장 프로그램 스크린샷

screenshot

Virtual Desktops 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension provides virtual desktop capabilities for ChromeOS, and some
more.

Current Features
----------------

* Create virtual desktops. Move windows between them via keyboard shortcuts.
* Position windows on a tiling grid layout via keyboard shortcuts.

Note: to use the keyboard shortcuts (which is highly advisable), go to this
extension's settings and use the "Keyboard shortcuts" button to set a shortcut
to launch this extension. Alternatively, use the default shortcut of
[Shift]-[Alt]-d.

The following keyboard commands are available (where [Modifier] is any
modifier from Shift, Ctrl, Alt and Command, as per your preference, and
[Shortcut] is your configured keyboard shortcut, which is [Shift]-[Alt]-d by
default):

* [Shortcut] q: Move the current window to the top left (other position/size keys are displayed in the popup).
* [Shortcut] [Modifier]-q: Extract the current tab from the current window, and move it to the top left (other position/size keys are displayed in the popup).
* [Shortcut] [Left]: Switch to the previous virtual desktop.
* [Shortcut] [Modifier]-[Left]: Send the current window to the previous virtual desktop.
* [Shortcut] [Modifier]-[Right]: Send the current window to the next virtual desktop.
* [Shortcut] [Right]: Switch to the next virtual desktop.                    

확장 프로그램 기본 정보

이름 Virtual Desktops Virtual Desktops
ID migbdolpkobiafpigleooabjcbpkcdpd
공식 URL https://chromewebstore.google.com/detail/virtual-desktops/migbdolpkobiafpigleooabjcbpkcdpd
설명 Place Chrome windows on virtual desktops using a tiling grid
파일 크기 20.77 KB
설치 횟수 1,877
현재 버전 0.6.0
최근 업데이트 2018-06-18
출시 날짜 2018-06-18
평점 2.92/5 총 12 개의 평점
개발자 Rudolf Polzer
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/google/virtualdesktops-extension
개인정보 보호 정책 페이지 URL https://gist.github.com/divVerent/0356f9abdfcabc61f7ad6302ed554383
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Virtual Desktops",
    "icons": {
        "48": "icons\/virtualdesktops48.png",
        "128": "icons\/virtualdesktops128.png"
    },
    "version": "0.6.0",
    "description": "Place Chrome windows on virtual desktops using a tiling grid",
    "permissions": [],
    "background": {
        "scripts": [
            "compiled\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "Virtual Desktops",
        "default_popup": "client.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+D"
            }
        }
    },
    "options_page": "options_page.html"
}