Resize Me
Resize window to settings.
Resize Me là gì?
Resize Me là một tiện ích mở rộng Chrome được phát triển bởi Reece, và tính năng chính của nó là "Resize window to settings.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Resize Me
Tải xuống các tệp mở rộng Resize Me dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Resize Me |
ID | nknaocnnmginhdlblkgapgohbkeapggn |
URL Chính Thức | https://chromewebstore.google.com/detail/resize-me/nknaocnnmginhdlblkgapgohbkeapggn |
Mô tả | Resize window to settings. |
Kích Thước Tệp | 8.22 KB |
Số Lần Cài Đặt | 119 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2019-11-19 |
Ngày Phát Hành | 2019-11-19 |
Nhà Phát Triển | Reece |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } } |