[STG plugin] Create new tab in temporary container

[STG plugin] Create new tab in temporary container

Create a new tab in the container in the Simple Tab Groups v4.5.2+ extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "browser_specific_settings": {
    "gecko": {
      "id": "stg-plugin-create-temp-tab@drive4ik",
      "strict_min_version": "112.0"
    }
  },
  "incognito": "not_allowed",
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "version": "2.0",
  "author": "Drive4ik",
  "homepage_url": "https://github.com/drive4ik/simple-tab-groups",
  "icons": {
    "16": "icons/icon.svg"
  },
  "action": {
    "default_area": "tabstrip",
    "default_icon": "icons/icon.svg",
    "default_title": "__MSG_newTempTabTitle__"
  },
  "permissions": [
    "notifications"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "type": "module"
  },
  "default_locale": "en",
  "commands": {
    "_execute_action": {
      "description": "__MSG_newTempTabTitle__"
    }
  }
}