Open in specific window

Open in specific window

Adds a right-click menu that opens a link in a specified window

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Open in specific window",
  "version": "1.3.1",
  "manifest_version": 2,
  "description": "Adds a right-click menu that opens a link in a specified window",
  "permissions": [
    "tabs",
    "contextMenus",
    "storage",
    "background"
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "background": {
    "page": "background/background.html"
  },
  "browser_action": {
    "default_title": "Name this window",
    "default_popup": "browserAction/browserAction.html"
  },
  "options_ui": {
    "page": "options/options.html",
    "chrome_style": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_scripts/main.js"
      ],
      "all_frames": true
    }
  ]
}