Resize Me

Resize window to settings.

Qu'est-ce que Resize Me ?

Resize Me est une extension Chrome développée par Reece, et sa fonction principale est "Resize window to settings.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Resize Me

Téléchargez les fichiers d'extension Resize Me au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Resize Me Resize Me
ID nknaocnnmginhdlblkgapgohbkeapggn
URL Officiel https://chromewebstore.google.com/detail/resize-me/nknaocnnmginhdlblkgapgohbkeapggn
Description Resize window to settings.
Taille du Fichier 8.22 KB
Nombre d'Installations 119
Version Actuelle 1.0
Dernière Mise à Jour 2019-11-19
Date de Publication 2019-11-19
Développeur Reece
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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
    }
}