Easy Window Resize

Resize window with a keystroke.

什么是Easy Window Resize?

Easy Window Resize是由https://serdar.work开发的Chrome扩展程序,该扩展的主要功能是“Resize window with a keystroke.”。

扩展截图

screenshot

下载Easy Window Resize扩展crx文件

下载Easy Window Resize扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        - Resizes the active browser window to the predefined list of sizes.

- Requires no special permissions.

- Use the default keyboard shortcut Ctrl+Shift+A (Command+Shift+A for Mac) to resize to the next window size in your list. Keep using the shortcut to rotate window sizes.

- You can add and remove sizes in the window sizes list. Go to extension options to do that.

- You can change the shortcut. Use "Keyboard shortcuts" in the Chrome extension settings to do that.

UPDATES

- Menu added.

- You can add the current window size using the "Add Current Window Size" button in the options page.                    

扩展基本信息

名称 Easy Window Resize Easy Window Resize
ID cfpenpohaapdgnkglcbgjiooipcbcebi
官方URL https://chromewebstore.google.com/detail/easy-window-resize/cfpenpohaapdgnkglcbgjiooipcbcebi
简介 Resize window with a keystroke.
文件大小 46.42 KB
安装次数 10,000
当前版本 1.1.0
更新时间 2021-03-27
上架时间 2020-06-16
评分 3.92/5 共38次评分
开发者 https://serdar.work
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://serdar.work/chrome-extensions/privacy-policy.html
支持的语言 en,tr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "1.1.0",
    "manifest_version": 2,
    "description": "__MSG_extDescription__",
    "icons": {
        "128": "icon-128.png"
    },
    "default_locale": "en",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "next-window-size": {
            "suggested_key": {
                "default": "Ctrl+Shift+A",
                "mac": "Command+Shift+A"
            },
            "description": "Next Window Size"
        }
    },
    "homepage_url": "http:\/\/serdar.work",
    "permissions": [
        "storage"
    ],
    "options_page": "options.html"
}