Window Resizer

Resize and align the current window to the predefined position with multi-monitor support

Window Resizerคืออะไร?

Window Resizer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย brian.girko และคุณลักษณะหลักของมันคือ "Resize and align the current window to the predefined position with multi-monitor support"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Window Resizer

ดาวน์โหลดไฟล์ส่วนขยาย Window Resizer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This is a powerful layout resizer extension for browser windows. This extension enables the user to adjust the current window's layout size based on the pre-defined set or any new custom dimension. Each dimension is visually shown in a toolbar popup for easy access. The extension gets left, top, right, and bottom positions in percent unit and changes the window size to these values. This extension detects all the monitors in your system and allows one of the monitors to be the reference for the alignment. Also, this extension supports keyboard shortcuts for the first six alignments in the popup. It means that you can re-align to any of these six alignments without opening the popup and just by pressing a user-defined keyboard set. Each item in the popup is draggable. The user can change the arrangement of the items or even remove or add new items.

Features:
1. Supports percent values. So it is compatible with different monitors
2. Automatically fill the current window size when the popup is open. This way, you can add this layout size to the table without any configuration needed.
3. Supports layout adjustment by moving blocks around.
4. Supports import and export options to sync settings between different browsers.
5. Written on top of manifest version 3. The extension is completely idle when it is not active (no resource usage).
6. You can define a custom window size for the startup. Once the extension loads, it sets this user-defined window size for the currently active window.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Window Resizer Window Resizer
ID pplohohdkehokmecokhjlnbcjaclegok
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/window-resizer/pplohohdkehokmecokhjlnbcjaclegok
คำอธิบาย Resize and align the current window to the predefined position with multi-monitor support
ขนาดไฟล์ 67.24 KB
จำนวนการติดตั้ง 2,159
เวอร์ชันปัจจุบัน 0.2.5
อัปเดตครั้งล่าสุด 2023-02-12
วันที่เผยแพร่ 2020-06-17
คะแนน 4.40/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา brian.girko
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://webextension.org/listing/window-resizer.html
URL หน้าช่วยเหลือ https://webextension.org/listing/window-resizer.html
ภาษาที่รองรับ de,en,fr,nl,es,it,pt-BR,pt-PT,ru,zh-CN,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "0.2.5",
    "name": "Window Resizer",
    "description": "__MSG_description__",
    "default_locale": "en",
    "permissions": [
        "storage",
        "system.display"
    ],
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png",
        "256": "data\/icons\/256.png",
        "512": "data\/icons\/512.png"
    },
    "action": {
        "default_popup": "data\/popup\/index.html"
    },
    "homepage_url": "https:\/\/webextension.org\/listing\/window-resizer.html",
    "background": {
        "service_worker": "worker.js"
    },
    "commands": {
        "_execute_action": {
            "description": "Press the action button"
        },
        "layout-0": {
            "description": "Use the first popup alignment to adjust the current window size"
        },
        "layout-1": {
            "description": "Use the second popup alignment to adjust the current window size"
        },
        "layout-2": {
            "description": "Use the third popup alignment to adjust the current window size"
        },
        "layout-3": {
            "description": "Use the forth popup alignment to adjust the current window size"
        },
        "layout-4": {
            "description": "Use the fifth popup alignment to adjust the current window size"
        }
    },
    "options_ui": {
        "page": "\/data\/options\/index.html"
    }
}