Resize Me

Resize Me

Resize window to settings.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Resize Me",
  "version": "1.0",
  "description": "Resize window to settings.",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "manifest_version": 2,
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_title": "Resize window.",
    "default_popup": "options.html"
  },
  "commands": {
    "exec_RM": {
      "suggested_key": {
        "default": "Ctrl+Shift+2"
      },
      "description": "Execute function"
    },
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+S"
      }
    }
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  }
}