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文件
下载Window Layout Resizer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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" } } } |