Resize Me

Resize window to settings.

什麼是Resize Me?

Resize Me是由Reece開發的Chrome擴展程式,該擴展的主要功能是“Resize window to settings.”。

擴展截圖

screenshot

下載Resize Me擴展crx文件

下載Resize Me擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Shift window to upper left corner of monitor at specified size.

Resize: ctrl + shift + 2

Currently there is a bug that it will not resize a full screen window if it's on one monitor (probably 'main' monitor). Putting it onto the other monitor or resizing it so it's not a full screen will get around this.                    

擴展基本資訊

名稱 Resize Me Resize Me
ID nknaocnnmginhdlblkgapgohbkeapggn
官方網址 https://chromewebstore.google.com/detail/resize-me/nknaocnnmginhdlblkgapgohbkeapggn
簡介 Resize window to settings.
檔案大小 8.22 KB
安裝次數 119
目前版本 1.0
更新時間 2019-11-19
上架時間 2019-11-19
開發者 Reece
電子郵箱 [email protected]
付費類型 free
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Resize Me",
    "version": "1.0",
    "description": "Resize window to settings.",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "manifest_version": 2,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "Resize window.",
        "default_popup": "options.html"
    },
    "commands": {
        "exec_RM": {
            "suggested_key": {
                "default": "Ctrl+Shift+2"
            },
            "description": "Execute function"
        },
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+S"
            }
        }
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}