Resize Me
Resize window to settings.
Resize Meとは何ですか?
Resize MeはReeceによって開発されたChromeの拡張機能で、その主な機能は「Resize window to settings.」です。
拡張機能のスクリーンショット
Resize Me拡張機能のCRXファイルをダウンロード
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 |
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 |
Eメール | [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 } } |