Easy Window Resize

Resize window with a keystroke.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "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",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}