Open Tab

Open Tab

Customize how to open a link, open in new or current tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Open Tab",
  "version": "0.9.1610.123",
  "description": "__MSG_ext_des__",
  "default_locale": "en",
  "icons": {
    "48": "img/icon.png",
    "98": "img/icon.png",
    "128": "img/icon.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "img/icon.png",
      "38": "img/icon.png"
    },
    "default_title": "Open in new tab",
    "default_popup": "html/popup.html"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/event.js"
      ],
      "match_about_blank": true,
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "options_page": "html/options.html",
  "options_ui": {
    "page": "html/options.html",
    "chrome_style": false,
    "open_in_tab": false
  },
  "permissions": [
    "<all_urls>",
    "notifications",
    "tabs",
    "storage"
  ]
}