Easy Window Resize
Resize window with a keystroke.
Cos'è Easy Window Resize?
Easy Window Resize è un'estensione di Chrome sviluppata da https://serdar.work, e la sua funzione principale è "Resize window with a keystroke.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Easy Window Resize
Scarica i file di estensione Easy Window Resize in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
- 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.
Informazioni di Base sull'Estensione
Nome | Easy Window Resize |
ID | cfpenpohaapdgnkglcbgjiooipcbcebi |
URL Ufficiale | https://chromewebstore.google.com/detail/easy-window-resize/cfpenpohaapdgnkglcbgjiooipcbcebi |
Descrizione | Resize window with a keystroke. |
Dimensione del File | 46.42 KB |
Conteggio Installazioni | 10,000 |
Versione Corrente | 1.1.0 |
Ultimo Aggiornamento | 2021-03-27 |
Data di Pubblicazione | 2020-06-16 |
Valutazione | 3.92/5 Totale 38 Valutazioni |
Sviluppatore | https://serdar.work |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | https://serdar.work/chrome-extensions/privacy-policy.html |
Lingue Supportate | 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" } |