Open in active tab when opened from command line

Open in active tab when opened from command line

Display the page in the active tab or a specific tab instead of a new tab when you open the page from the command line.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extension_name__",
  "short_name": "__MSG_extension_name__",
  "version": "1.2023.122.0",
  "author": "dlw@mcprv",
  "description": "__MSG_extension_description__",
  "default_locale": "en",
  "browser_specific_settings": {
    "gecko": {
      "id": "{67582d3a-742a-4547-b306-ac43d201b74a}"
    }
  },
  "permissions": [
    "file://*/*",
    "storage",
    "webNavigation",
    "notifications",
    "downloads",
    "management"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  },
  "browser_action": {
    "browser_style": true,
    "default_popup": "options.html",
    "default_title": "__MSG_extension_name__",
    "default_icon": {
      "96": "turn-left-arrow-symbol.svg"
    }
  },
  "icons": {
    "96": "turn-left-arrow-symbol.svg"
  }
}