Easy Window Resize

Resize window with a keystroke.

Vad är Easy Window Resize?

Easy Window Resize är en Chrome-tillägg utvecklad av https://serdar.work, och dess huvudfunktion är "Resize window with a keystroke.".

Tilläggsskärmbilder

screenshot

Ladda ner Easy Window Resize-förlängningens CRX-fil

Ladda ner Easy Window Resize-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        - 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.                    

Grundläggande Information om Tillägg

Namn Easy Window Resize Easy Window Resize
ID cfpenpohaapdgnkglcbgjiooipcbcebi
Officiell webbadress https://chromewebstore.google.com/detail/easy-window-resize/cfpenpohaapdgnkglcbgjiooipcbcebi
Beskrivning Resize window with a keystroke.
Filstorlek 46.42 KB
Antal Installationer 10,000
Aktuell Version 1.1.0
Senast Uppdaterad 2021-03-27
Publiceringsdatum 2020-06-16
Betyg 3.92/5 Totalt 38 Betyg
Utvecklare https://serdar.work
E-post [email protected]
Betalningssätt free
URL till Sekretesspolicy Sidan https://serdar.work/chrome-extensions/privacy-policy.html
Stödda Språk 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"
}