Open in new tab

Open in new tab

Open links in new tab for a list of specified domains. Useful for sites such as hackernews

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 in new tab",
  "version": "0.0.15",
  "author": "Ramkumar K R",
  "description": "Open links in new tab for a list of specified domains. Useful for sites such as hackernews",
  "permissions": [
    "storage",
    "<all_urls>"
  ],
  "browser_action": {
    "browser_style": false,
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "tabify.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "options_ui": {
    "page": "options/options.html"
  },
  "icons": {
    "52": "icon.png"
  }
}