MultiWindow Positioner
Tool extension that enables effective window positioning/placement in multi-monitor setups
MultiWindow Positioner란 무엇입니까?
MultiWindow Positioner은(는) Control€xpert GmbH에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Tool extension that enables effective window positioning/placement in multi-monitor setups"입니다.
확장 프로그램 스크린샷
MultiWindow Positioner 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
* Flexible positioning options via Rules concept * Multi-monitor support * Validation of rules configuration against existent Monitor. * Easy monitor detection * Configuration templates support. It enables user profiles in large organizations and distributed environments. * Automatic manual positioning detection that saves into existent rules. * Default monitor support, for intelligent monitor pre-selection. * Custom positions support
확장 프로그램 기본 정보
이름 | MultiWindow Positioner |
ID | hmgehpjpfhobbnhhelhlggjfcaollidl |
공식 URL | https://chromewebstore.google.com/detail/multiwindow-positioner/hmgehpjpfhobbnhhelhlggjfcaollidl |
설명 | Tool extension that enables effective window positioning/placement in multi-monitor setups |
파일 크기 | 3.47 MB |
설치 횟수 | 20,000 |
현재 버전 | 1.0.19 |
최근 업데이트 | 2021-04-21 |
출시 날짜 | 2019-03-21 |
평점 | 4.75/5 총 16 개의 평점 |
개발자 | Control€xpert GmbH |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/ControlExpert/chrome-multiwindow-positioner |
도움말 페이지 URL | https://github.com/ControlExpert/chrome-multiwindow-positioner/issues |
지원되는 언어 | de,en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_appName__", "short_name": "MWP", "version": "1.0.19", "default_locale": "en", "description": "__MSG_appDescription__", "author": "Igor Lino @ ControlExpert", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "homepage_url": "https:\/\/github.com\/ControlExpert\/chrome-multiwindow-positioner", "background": { "scripts": [ "scripts\/background.js" ] }, "permissions": [ "system.display", "tabs" ], "options_ui": { "page": "options.html", "chrome_style": true, "open_in_tab": true }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "scripts\/contentscript.js" ], "run_at": "document_end", "all_frames": false } ], "externally_connectable": { "matches": [ "*:\/\/igorlino.github.io\/*" ] }, "web_accessible_resources": [ "images\/icon-48.png", "images\/options-loader.gif" ] } |