How to make a small WhatsApp window?

How to make a small WhatsApp window - briefly?

To create a smaller WhatsApp window, you can use the web version of WhatsApp. Simply open WhatsApp Web in your browser and adjust the window size according to your preferences. This method allows for easy customization and is particularly useful for multitasking on a computer.

How to make a small WhatsApp window - in detail?

Creating a small WhatsApp window can enhance your productivity and multitasking capabilities by allowing you to keep the app open without it taking up too much screen space. Here are detailed steps on how to achieve this:

On Windows:

  1. WhatsApp Desktop Application: The official WhatsApp desktop application does not support window resizing directly. However, you can use third-party tools like AutoHotkey to create a custom script that will allow you to resize the window. Here’s how:

    • Download and install AutoHotkey from its official website.
    • Create a new text file and rename it with a .ahk extension (e.g., resizeWhatsApp.ahk).
    • Open the file in a text editor and add the following script:

      #Persistent
      SetTitleMatchMode, 2
      SetTimer, ResizeWindow, 100
      Return
      ResizeWindow:
      WinGet, id, list
      Loop %id%
      {
       WinGet, title, list, %A_Index%
       if (title = "WhatsApp")
       {
       WinMove, ahk_class Chrome_WidgetWin_1, 0, 0, 300, 400 ; Adjust the dimensions as needed
       }
      }
      Return
    • Save and run the script. It will automatically resize your WhatsApp window to the specified dimensions (in this case, 300x400 pixels).
  2. WhatsApp Web: If you prefer using WhatsApp Web, you can simply resize the browser window to create a smaller viewing area. This method is straightforward and does not require any additional software.

    • Open your web browser and navigate to web.whatsapp.com.
    • Log in with your phone number and QR code scanner.
    • Once logged in, simply resize the browser window to your desired dimensions by dragging the edges of the window.

On MacOS:

  1. WhatsApp Desktop Application: Similar to Windows, the official WhatsApp desktop application for macOS does not support direct window resizing. However, you can use a third-party app called "BetterTouchTool" which allows for custom window sizes and positions.

    • Download and install BetterTouchTool from its official website.
    • Open BetterTouchTool and navigate to the "Windows" tab.
    • Add a new rule with the following settings:
      • Application: WhatsApp
      • Window Size: Set your desired dimensions (e.g., 300x400 pixels)
    • Save the rule and activate it. BetterTouchTool will now automatically resize your WhatsApp window whenever you open it.
  2. WhatsApp Web: As with Windows, using WhatsApp Web on macOS allows for simple browser window resizing without additional software:

    • Open your web browser and go to web.whatsapp.com.
    • Log in using your phone number and QR code scanner.
    • Resize the browser window to your preferred dimensions by dragging its edges.

By following these detailed steps, you can easily create a small WhatsApp window that fits your specific needs, whether you are on Windows or macOS.

Author: admin .

Published: 2024-11-21 05:27.

Latest update: 2025-04-28 17:11

Views: 9