New Window to the Right

New Window to the Right

Opens a new window directly to the right of the current window and wraps when the window reaches the edge of the monitor.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "New Window to the Right",
  "version": "3.1",
  "description": "Opens a new window directly to the right of the current window and wraps when the window reaches the edge of the monitor.",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "128": "NewWindowToTheRight.png"
    }
  },
  "icons": {
    "128": "NewWindowToTheRight.png"
  },
  "permissions": [
    "system.display",
    "declarativeContent"
  ]
}