Window Layout Resizer
Resize the current window into different customizable layouts (Multiple monitors are supported).
Window Layout Resizer란 무엇입니까?
Window Layout Resizer은(는) rynu.smith에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Resize the current window into different customizable layouts (Multiple monitors are supported)."입니다.
확장 프로그램 스크린샷
Window Layout Resizer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension allows you to adjust the current window layout size to the commonly used sizes (like half, one-third, or quarter window sizes). You can define your own custom layout size from the options page or change the order of items that are shown in the popup window. The extension is compatible with high resolution (HD) (like Retina) displays and handles multiple monitors very well. Also, the layout settings work fine if a monitor is replaced (percentages are stored instead of the absolute values). This can be used to split your screen into different sections and place different web pages into different areas. For more details or posting suggestions please use: http://add0n.com/layout-resizer.html For technical bug reports use: https://github.com/ray-lothian/Layout-Resizer/
확장 프로그램 기본 정보
이름 | Window Layout Resizer |
ID | gpogedegpcfmbpfbjilofgfmjglebnhi |
공식 URL | https://chromewebstore.google.com/detail/window-layout-resizer/gpogedegpcfmbpfbjilofgfmjglebnhi |
설명 | Resize the current window into different customizable layouts (Multiple monitors are supported). |
파일 크기 | 201 KB |
설치 횟수 | 1,122 |
현재 버전 | 0.1.4 |
최근 업데이트 | 2020-09-02 |
출시 날짜 | 2017-10-07 |
평점 | 4.33/5 총 6 개의 평점 |
개발자 | rynu.smith |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://add0n.com/layout-resizer.html |
도움말 페이지 URL | http://add0n.com/layout-resizer.html |
개인정보 보호 정책 페이지 URL | https://add0n.com/policies/rynu.smith.txt |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Window Layout Resizer", "description": "Resize the current window into different customizable layouts (Multiple monitors are supported).", "version": "0.1.4", "icons": { "16": "Content\/Images\/16.png", "24": "Content\/Images\/24.png", "32": "Content\/Images\/32.png", "64": "Content\/Images\/64.png", "128": "Content\/Images\/128.png" }, "browser_action": { "default_popup": "popup.html" }, "background": { "scripts": [ "Scripts\/Resizer.js", "Scripts\/background.js" ], "persistent": false }, "permissions": [ "storage", "system.display", "notifications" ], "homepage_url": "https:\/\/add0n.com\/layout-resizer.html", "commands": { "resize0": { "description": "Resize to template #1" }, "resize1": { "description": "Resize to template #2" }, "resize2": { "description": "Resize to template #3" }, "resize3": { "description": "Resize to template #4" } } } |