Easy Window Resize

Easy Window Resize

Resize window with a keystroke.

Merlin
Additional files are visible only to premium users

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"
}