Resize Me

Resize window to settings.

Resize Meคืออะไร?

Resize Me เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Reece และคุณลักษณะหลักของมันคือ "Resize window to settings."

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

screenshot

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

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

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

                        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.                    

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

ชื่อ Resize Me Resize Me
ID nknaocnnmginhdlblkgapgohbkeapggn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/resize-me/nknaocnnmginhdlblkgapgohbkeapggn
คำอธิบาย Resize window to settings.
ขนาดไฟล์ 8.22 KB
จำนวนการติดตั้ง 119
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2019-11-19
วันที่เผยแพร่ 2019-11-19
ผู้พัฒนา Reece
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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
    }
}