Open in new tab

Open in new tab

Open bookmarks and links in a new tab for a list of specified domains.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Open in new tab",
  "version": "0.0.13resigned1",
  "author": "Ramkumar K R",
  "description": "Open links in new tab for a list of specified domains. Also open bookmarks in a new tab",
  "permissions": [
    "activeTab",
    "storage",
    "<all_urls>"
  ],
  "optional_permissions": [
    "browserSettings"
  ],
  "browser_action": {
    "browser_style": false,
    "default_icon": "icon-dark.svg",
    "default_popup": "popup.html",
    "theme_icons": [
      {
        "light": "icon-light.svg",
        "dark": "icon-dark.svg",
        "size": 32
      }
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "tabify.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "options_ui": {
    "page": "options/options.html",
    "browser_style": true
  },
  "application": {
    "gecko": {
      "strict_min_version": "61.0"
    }
  },
  "icons": {
    "52": "icon.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{6f5f4891-9637-41f9-9ee5-3a0ac02cf254}"
    }
  }
}