Force link to open in Apps window

Force link to open in Apps window

Make the links in the Apps window always open in the current window.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "version": "1.0.0",
  "author": "pana",
  "description": "__MSG_extDes__",
  "default_locale": "en",
  "icons": {
    "16": "icons/icon_16.png",
    "19": "icons/icon_16.png",
    "32": "icons/icon_32.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_title": "__MSG_extName__"
  },
  "permissions": [
    "<all_urls>"
  ]
}