Resize Me

Resize window to settings.

¿Qué es Resize Me?

Resize Me es una extensión de Chrome desarrollada por Reece, y su función principal es "Resize window to settings.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Resize Me

Descarga archivos de extensión Resize Me en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Resize Me Resize Me
ID nknaocnnmginhdlblkgapgohbkeapggn
URL Oficial https://chromewebstore.google.com/detail/resize-me/nknaocnnmginhdlblkgapgohbkeapggn
Descripción Resize window to settings.
Tamaño del Archivo 8.22 KB
Cantidad de Instalaciones 119
Versión Actual 1.0
Última Actualización 2019-11-19
Fecha de Publicación 2019-11-19
Desarrollador Reece
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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
    }
}