Easy Window Resize
Resize window with a keystroke.
O que é Easy Window Resize?
Easy Window Resize é uma extensão do Chrome desenvolvida por https://serdar.work, e sua principal característica é "Resize window with a keystroke.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Easy Window Resize
Baixe arquivos de extensão Easy Window Resize no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
- Resizes the active browser window to the predefined list of sizes. - Requires no special permissions. - Use the default keyboard shortcut Ctrl+Shift+A (Command+Shift+A for Mac) to resize to the next window size in your list. Keep using the shortcut to rotate window sizes. - You can add and remove sizes in the window sizes list. Go to extension options to do that. - You can change the shortcut. Use "Keyboard shortcuts" in the Chrome extension settings to do that. UPDATES - Menu added. - You can add the current window size using the "Add Current Window Size" button in the options page.
Informações Básicas da Extensão
Nome | Easy Window Resize |
ID | cfpenpohaapdgnkglcbgjiooipcbcebi |
URL Oficial | https://chromewebstore.google.com/detail/easy-window-resize/cfpenpohaapdgnkglcbgjiooipcbcebi |
Descrição | Resize window with a keystroke. |
Tamanho do Arquivo | 46.42 KB |
Contagem de Instalações | 10,000 |
Versão Atual | 1.1.0 |
Última Atualização | 2021-03-27 |
Data de Publicação | 2020-06-16 |
Classificação | 3.92/5 Total de 38 Avaliações |
Desenvolvedor | https://serdar.work |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Política de Privacidade | https://serdar.work/chrome-extensions/privacy-policy.html |
Idiomas Suportados | en,tr |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extName__", "version": "1.1.0", "manifest_version": 2, "description": "__MSG_extDescription__", "icons": { "128": "icon-128.png" }, "default_locale": "en", "browser_action": { "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ] }, "commands": { "next-window-size": { "suggested_key": { "default": "Ctrl+Shift+A", "mac": "Command+Shift+A" }, "description": "Next Window Size" } }, "homepage_url": "http:\/\/serdar.work", "permissions": [ "storage" ], "options_page": "options.html" } |