Resize Me

Resize window to settings.

Apa itu Resize Me?

Resize Me adalah ekstensi Chrome yang dikembangkan oleh Reece, dan fitur utamanya adalah "Resize window to settings.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Resize Me

Unduh file ekstensi Resize Me dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Resize Me Resize Me
ID nknaocnnmginhdlblkgapgohbkeapggn
URL Resmi https://chromewebstore.google.com/detail/resize-me/nknaocnnmginhdlblkgapgohbkeapggn
Deskripsi Resize window to settings.
Ukuran File 8.22 KB
Jumlah Instalasi 119
Versi Saat Ini 1.0
Terakhir Diperbarui 2019-11-19
Tanggal Publikasi 2019-11-19
Pengembang Reece
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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
    }
}