Window Seat

Window Seat

Make browser windows open with a consistent position and size

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Window Seat",
  "description": "Make browser windows open with a consistent position and size",
  "version": "1.1",
  "minimum_chrome_version": "63",
  "manifest_version": 2,
  "background": {
    "page": "bg.html"
  },
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "img/icon19.png",
      "38": "img/icon38.png"
    },
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "content_security_policy": "script-src 'self'; object-src 'self'"
}